-
Notifications
You must be signed in to change notification settings - Fork 359
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
netlify dev leaves behind zombie processes on Windows #3251
Comments
Probably related to Line 92 in f5743f0
|
@erezrokah I did mess around with that line a bit to see if I could get it to work before submitting the issue, but it seemed resistant to the things I tried: firing |
I've been having this same issue. To deal with this I've been running the following in my CLI after killing netlify dev to manually kill all nodejs processes
|
Thanks @kaganjd, if you feel like messing with this a bit more, maybe using Line 5 in 5026e02
|
The issue is that Other projects have also encountered this issue with |
Can confirm 6.8.1 works for me. Much appreciated! :) |
Describe the bug
netlify dev
leaves behind zombie processes on windows after ctrl-c. This leaves copies of dev tools like tsc, esbuild, nextjs, etc in watch mode running after the dev session is terminated.To Reproduce
Steps to reproduce the behavior:
https://github.com/kamsar/nfcli-sigint-zombies#readme
Configuration
See repro repository above for steps and reproducible scenario. Tests ran on Windows 10 19042, node 14.15.4, npm and yarn both. It seems to occur on any process spawned by netlify dev - tsc, npm-run-all, esbuild, node scripts, etc.
Expected behavior
netlify-dev
should not leave behind zombie processes - and it did not used to, this started happening a month or two ago.The text was updated successfully, but these errors were encountered: