no message

This commit is contained in:
2024-04-26 22:21:56 +03:00
parent cf81637812
commit c84a648bb6
6 changed files with 18 additions and 10 deletions

View File

@@ -18,6 +18,7 @@ import TestingSystem.Common.Test.TestType;
import TestingSystem.Common.TestingPackageToKill.TestingPackageToKill;
import TestingSystem.DVM.DVMPackage.DVMPackage;
import TestingSystem.DVM.DVMPackage.DVMPackage_json;
import TestingSystem.DVM.DVMTestingChecker;
import TestingSystem.SAPFOR.Json.SapforPackage_json;
import TestingSystem.SAPFOR.SapforConfiguration.SapforConfiguration;
import TestingSystem.SAPFOR.SapforConfigurationCommand.SapforConfigurationCommand;
@@ -159,14 +160,13 @@ public class TestingServer extends RepositoryServer<TestsDatabase> {
testingThread.start();
}
// DVMTestingChecker dvmTestingChecker = new DVMTestingChecker();
DVMTestingChecker dvmTestingChecker = new DVMTestingChecker();
SapforTestingPlanner sapforTestingPlanner = new SapforTestingPlanner();
//--
protected Thread testingThread = new Thread(() -> {
while (true) {
// dvmTestingChecker.Perform();
dvmTestingChecker.Perform();
sapforTestingPlanner.Perform();
System.out.println("sleep...");
Utils.sleep(5000);
}
});