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
cli.js does not kill the child process before exiting on SIGTERM.
cli.js
SIGTERM
Repro:
$ ./node_modules/.bin/flow server 2>/dev/null & [1] 10415 $ kill -s SIGTERM 10415 $ ps ax | grep flow 10416 s002 S 0:00.85 .../node_modules/flow-bin/flow-osx-v0.57.3/flow server src 10417 s002 S 0:00.01 .../node_modules/flow-bin/flow-osx-v0.57.3/flow 10418 s002 S 0:00.01 .../node_modules/flow-bin/flow-osx-v0.57.3/flow 10419 s002 S 0:00.02 .../node_modules/flow-bin/flow-osx-v0.57.3/flow 10420 s002 S 0:00.01 .../node_modules/flow-bin/flow-osx-v0.57.3/flow ...
The text was updated successfully, but these errors were encountered:
kill child process on SIGTERM, fixes flow#88
b525d77
ae7fed4
No branches or pull requests
cli.js
does not kill the child process before exiting onSIGTERM
.Repro:
The text was updated successfully, but these errors were encountered: