mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-07 04:53:28 +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 {
|
||||
var signal = force ? 'SIGKILL' : null;
|
||||
var signal = force ? 'SIGKILL' : 'SIGTERM';
|
||||
this.child.kill(signal);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue