You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 2, 2018. It is now read-only.
It appears that there is a bug with pty.js (see here and here) which prevents stopped processes from actually closing out correctly, so they become zombies to the scales.js process.
Not sure how we will go about fixing this, but at this point it doesn't look like there is too much we can do unfortunately. It was suggested to use waitpid(), however that doesn't seem to be compatible with NodeJS 0.12, unless that was just a bug on my system.
To reproduce this, simply start a server and then stop it. You can do this over and over, and then run ps aux | grep <process> (i.e. java) and you will see a long list of zombie processes form over time.
It appears that there is a bug with
pty.js(see here and here) which prevents stopped processes from actually closing out correctly, so they become zombies to thescales.jsprocess.Not sure how we will go about fixing this, but at this point it doesn't look like there is too much we can do unfortunately. It was suggested to use
waitpid(), however that doesn't seem to be compatible with NodeJS0.12, unless that was just a bug on my system.To reproduce this, simply start a server and then stop it. You can do this over and over, and then run
ps aux | grep <process>(i.e.java) and you will see a long list of zombie processes form over time.