The shutdown hook which kills the child node process does not wait for the child process to destroy. This has the potential to lead to zombie processes.
https://github.com/nicferrier/jarnode/blob/master/src/main/java/uk/me/ferrier/nic/jarnode/App.java#L228
Adjust so that we wait for the child process to destroy before throwing.
The shutdown hook which kills the child node process does not wait for the child process to destroy. This has the potential to lead to zombie processes.
https://github.com/nicferrier/jarnode/blob/master/src/main/java/uk/me/ferrier/nic/jarnode/App.java#L228
Adjust so that we wait for the child process to destroy before throwing.