fix: don't kill worker if it exited normally
This commit is contained in:
parent
4d55e5524c
commit
38cf6725c2
|
@ -96,7 +96,7 @@ class StartServerPlugin {
|
||||||
});
|
});
|
||||||
this.worker = cluster.fork(env);
|
this.worker = cluster.fork(env);
|
||||||
this.worker.on('exit', (code) => {
|
this.worker.on('exit', (code) => {
|
||||||
if (killOnExit) {
|
if (killOnExit && !this.worker.exitedAfterDisconnect) {
|
||||||
process.send({type: 'kill', payload: code});
|
process.send({type: 'kill', payload: code});
|
||||||
process.exit(code);
|
process.exit(code);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user