-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
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
CTRL+C does not kill underlying nodejs server #339
Comments
Any ideas? i can work on a solution but i dont know where to start looking. |
May just be a generic gradle issue with no good solution (other than maybe using --no-daemon flag) |
Indeed.. adding --no-daemon solves the issue. It seems that the node server thread is managed by the gradle daemon.. and stopping the task is not enough to kill it |
I've got a similar issue in Java - shutdownhook isn't called |
I am having a simple app created with https://github.com/facebook/create-react-app that I am using with this plugin. To start it I am running
gradle yarn_run_start
which starts a nodejs dev server with hot module reload etc. That all works fine, but when I exit out of it via CTRL+C and then later start the server again it reproducibly complains that the port is still open, i.e. the server was not killed through CTRL+C - I suppose SIGINT is not propagated correctly? Is there a way to make sure this happens?The text was updated successfully, but these errors were encountered: