no message

This commit is contained in:
2024-04-23 01:39:54 +03:00
parent cefbd875c8
commit 291c804fc7
3 changed files with 9 additions and 2 deletions

View File

@@ -173,6 +173,14 @@ public class TestingServer extends RepositoryServer<TestsDatabase> {
System.out.println(key);
}
System.out.println("-------------------");
//запуск.
for (MachineProcess process: processes_to_start.values()){
System.out.println("Запуск процесса "+process.getUniqueKey()+" ...");
process.Start();
process.state=MachineProcessState.Active;
db.Insert(process);
System.out.println("Выполнено");
}
} catch (Exception ex) {
ex.printStackTrace();
}