принудительный обрыв соединения после пересылок и консольных команд.

This commit is contained in:
2023-12-15 16:27:01 +03:00
parent 730ded1f4c
commit bd702b3ebc
4 changed files with 9 additions and 3 deletions

View File

@@ -664,6 +664,10 @@ public class TestingServer extends RepositoryServer<TestsDatabase> {
for (SapforConfigurationCommand command : commands) {
db.Delete(command);
}
} else if (object instanceof DVMPackage) {
DVMPackage dvmPackage = (DVMPackage) object;
File workspace = new File(Global.PackagesDirectory, String.valueOf(dvmPackage.id));
Utils.forceDeleteWithCheck(workspace);
}
}
//---------------------------------------------------------------------------------------------->>>