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
On FreeBSD when you stop a process that has some childs, the child process won't get stopped
Just start any forking process in PM2
Problem is in lib/TreeKill.js -- the default case is the linux syntax that is not working under FreeBSD (there's no --ppid switch on FreeBSD).
The solution is to use Darwin command line (pgrep) also for FreeBSD.
The text was updated successfully, but these errors were encountered:
Fixes Unitech#5895 - treekill syntax incompatible with freebsd
6940db7
No branches or pull requests
What's going wrong?
On FreeBSD when you stop a process that has some childs, the child process won't get stopped
How could we reproduce this issue?
Just start any forking process in PM2
Supporting information
Problem is in lib/TreeKill.js -- the default case is the linux syntax that is not working under FreeBSD (there's no --ppid switch on FreeBSD).
The solution is to use Darwin command line (pgrep) also for FreeBSD.
The text was updated successfully, but these errors were encountered: