fix bad scritp not dying properly

This commit is contained in:
Olivier Gagnon
2021-09-28 20:48:44 -04:00
parent a6d7f93111
commit b0739f8942
4 changed files with 20 additions and 27 deletions
-7
View File
@@ -531,13 +531,6 @@ export function createAndAddWorkerScript(
}
}
// If the WorkerScript is no longer "running", then this means its execution was
// already stopped somewhere else (maybe by something like exit()). This prevents
// the script from being cleaned up twice
if (w === undefined || !w.running) {
return;
}
killWorkerScript(s);
w.log("", "Script finished running");
}).catch(function (w) {