mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 07:56:01 +00:00
close chidl processes when parent exits
This commit is contained in:
17
packages/api/src/utility/childProcessChecker.js
Normal file
17
packages/api/src/utility/childProcessChecker.js
Normal file
@@ -0,0 +1,17 @@
|
||||
let counter = 0;
|
||||
|
||||
function childProcessChecker() {
|
||||
setInterval(() => {
|
||||
try {
|
||||
process.send({ msgtype: 'ping', counter: counter++ });
|
||||
} catch (ex) {
|
||||
// This will come once parent dies.
|
||||
// One way can be to check for error code ERR_IPC_CHANNEL_CLOSED
|
||||
// and call process.exit()
|
||||
console.log('parent died', ex.toString());
|
||||
process.exit();
|
||||
}
|
||||
}, 1000);
|
||||
}
|
||||
|
||||
module.exports = childProcessChecker;
|
||||
Reference in New Issue
Block a user