lol I forgot to actually release the lock

This commit is contained in:
Aidan Hahn 2019-06-01 15:03:18 -07:00
parent 18a7fcc0b3
commit 2deaff99f7
No known key found for this signature in database
GPG key ID: 327711E983899316

View file

@ -225,7 +225,10 @@ class ProcessManager {
ProcessController candidate = this.processMap.get(pid); ProcessController candidate = this.processMap.get(pid);
if (candidate == null) { if (candidate == null) {
JobServServer.logger.write("Tried to release lock of process that doesnt exist!"); JobServServer.logger.write("Tried to release lock of process that doesnt exist!");
return;
} }
candidate.releaseLock();
} }
/* /*