fix.додедал этап прерывания компиляции

This commit is contained in:
2025-03-14 10:35:24 +03:00
parent 04cf5c1552
commit 9f4eb9d88e
6 changed files with 14 additions and 13 deletions

View File

@@ -157,7 +157,6 @@ public abstract class TestingPlanner<P extends TestingPackage> extends TestingCl
if (ptk_id != CommonConstants.Nan) {
Print("package " + testingPackage.id + " NEEDS TO KILL");
Kill();
UpdatePackageState(TasksPackageState.Aborted);
ServerCommand(ServerCode.DeleteObjectByPK, new Pair(TestingPackageToKill.class, ptk_id));
} else if (checkIfPaused()) {
UpdatePackageState(TasksPackageState.Paused);

View File

@@ -219,6 +219,7 @@ public class SapforTestingPlanner extends TestingPlanner<SapforPackage> {
Process killer = Runtime.getRuntime().exec(kill_command);
killer.waitFor();
Print("done!");
UpdatePackageState(TasksPackageState.Aborted);
}
//--
@Override