We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66c9186 commit 2099d91Copy full SHA for 2099d91
1 file changed
packages/cli-v3/src/workers/dev/backgroundWorker.ts
@@ -865,6 +865,10 @@ class TaskRunProcess {
865
866
// FIXME: Something broke READY_TO_DISPOSE. We never receive it, so we always have to kill the process after the timeout below.
867
868
+ if (!kill) {
869
+ return;
870
+ }
871
+
872
// Set a timeout to kill the child process if it hasn't been killed within 5 seconds
873
setTimeout(() => {
874
if (this._child && !this._child.killed) {
0 commit comments