Ensure decompiler worker deamons are stopped after failure.

dev/0.11
modmuss50 2021-10-15 22:30:27 +01:00
parent d834895ff2
commit 0864e0a671
1 changed files with 8 additions and 6 deletions

View File

@ -148,8 +148,9 @@ public abstract class GenerateSourcesTask extends AbstractLoomTask {
params.getClassPath().setFrom(getProject().getConfigurations().getByName(Constants.Configurations.MINECRAFT_DEPENDENCIES));
});
try {
workQueue.await();
} finally {
if (useProcessIsolation()) {
boolean stopped = WorkerDaemonClientsManagerHelper.stopIdleJVM(getWorkerDaemonClientsManager(), jvmMarkerValue);
@ -158,6 +159,7 @@ public abstract class GenerateSourcesTask extends AbstractLoomTask {
}
}
}
}
private WorkQueue createWorkQueue(String jvmMarkerValue) {
if (!useProcessIsolation()) {