We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if a process is executed with persist: false (default), we should probably forcefully kill it on exit of the parent process.
persist: false
this won't be as simple as process.on('exit', onExit) since some things won't fire an exit event (but may fire signal events).
process.on('exit', onExit)
we probably just need to listen on exit and some common signals like SIGTERM.
exit
SIGTERM
The text was updated successfully, but these errors were encountered:
We have some prior work that may be of value here. These two functions cover posix and even Windows with an attempted graceful shutdown through ctrlc-windows.
Sorry, something went wrong.
No branches or pull requests
if a process is executed with
persist: false
(default), we should probably forcefully kill it on exit of the parent process.this won't be as simple as
process.on('exit', onExit)
since some things won't fire an exit event (but may fire signal events).we probably just need to listen on
exit
and some common signals likeSIGTERM
.The text was updated successfully, but these errors were encountered: