mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 11:41:17 +02:00
use SIGTERM as default kill signal for child process bug
This commit is contained in:
parent
22ac400402
commit
c23d4df932
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ Process.prototype = extend(Process.prototype, {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
var signal = force ? 'SIGKILL' : null;
|
var signal = force ? 'SIGKILL' : 'SIGTERM';
|
||||||
this.child.kill(signal);
|
this.child.kill(signal);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue