diff --git a/api.php b/api.php index d9af1e476e78a5ffbe75739e941b528ed46009dd..5bfee42d49424df0ede9c0b7f24a4de573b3f072 100644 --- a/api.php +++ b/api.php @@ -534,7 +534,8 @@ foreach ($testCases as $test) { $result = create_test_result($status_code_ArgumentInvalidOrMissing, "argument '" . $s_test_diskSpaceLimitInKb . "' missing", $testId, FALSE, FALSE, NULL, NULL, NULL, NULL, - 100, '', $versionString, + 100, '', + NULL, NULL, false, $arg_characterLimitProtocol ); array_push($testResults, $result); @@ -652,7 +653,7 @@ foreach ($testCases as $test) { goto handleCleanup; } - addToDebugTimings("before blackbox/justrun test"); + addToDebugTimings("after blackbox/justrun test"); } } diff --git a/constants.php b/constants.php index 984cbc3eeeb31b79f1b8ff8dd1e547509aa80d15..9d1762c6524c96b1fdd3e2f3d4499e3e312b2376 100644 --- a/constants.php +++ b/constants.php @@ -3,7 +3,7 @@ # variables //use this to know which version we published -$versionString = '2.6.2'; +$versionString = '2.6.3'; $rootDirNameToUseString = 'work'; $isDebug = false; //logs debug to STDOUT diff --git a/worker/traceLog.php b/worker/traceLog.php index 8affac52aecb3c8cdfefd596084bab4c1799888e..05ea27b9c38b96df6874d0c8266d9ed0acd86550 100644 --- a/worker/traceLog.php +++ b/worker/traceLog.php @@ -19,6 +19,8 @@ require_once __DIR__.'/../constants.php'; require_once __DIR__.'/../transactionHelper.php'; +require_once __DIR__.'/../helpers.php'; + $entityBody = file_get_contents('php://input');