From b7634478928ee77702d795b70d4d113f160b1f86 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Janis=20Daniel=20Da=CC=88hne?=
 <janis.daehne2@student.uni-halle.de>
Date: Fri, 19 Apr 2019 15:23:29 +0200
Subject: [PATCH] - removed old stats file

---
 stats.php | 39 ---------------------------------------
 1 file changed, 39 deletions(-)
 delete mode 100644 stats.php

diff --git a/stats.php b/stats.php
deleted file mode 100644
index 67d04c1..0000000
--- a/stats.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-//return the test server stats
-
-
-//NOTE: only post is allowed!!
-
-$config = require './bootstrap.php';
-
-#requires some helper function to e.g. create / delete dirs, handle output...
-require_once './constants.php';
-
-$response = array(
-    "workingDirFullPath" => $config["workingDirFullPath"],
-    "hardGlobalTimeoutInMs" => $config["hardGlobalTimeoutInMs"],
-    "maxParallelTests" => $config["maxParallelTests"],
-    "maxNumberOfTestsWithOneRequest" => $config["maxNumberOfTestsWithOneRequest"],
-    //"runner" => $config["runner"], //maybe not needed
-    "maxLinesToRead" => $config["maxLinesToRead"],
-    "maxErrLinesToRead" => $config["maxErrLinesToRead"],
-    "maxLinesToWrite" => $config["maxLinesToWrite"],
-    "showTestRunnerDebugOutput" => $config["showTestRunnerDebugOutput"],
-
-    "dbServer" => $config["dbServer"],
-    "dbName" => $config["dbName"],
-
-    "useConfigFromDb" => $config["useConfigFromDb"],
-    "dbConfigServer" => $config["dbConfigServer"],
-    "dbConfigName" => $config["dbConfigName"],
-
-    "environmentVars" => $config["environmentVars"],
-);
-
-
-if ($isDebug) {
-    debug(json_encode($respone));
-}
-
-output($status_code_Ok, "", $response);
-- 
GitLab