Friendly Jira Robot created ERT-219:
---------------------------------------
Summary: Node.js application children processes can not be killed from
eclipse console [EBZ#494592]
Key: ERT-219
URL:
https://issues.jboss.org/browse/ERT-219
Project: Eclipse Release Train
Issue Type: Task
Components: JSDT
Reporter: Friendly Jira Robot
When running a simple Node.js application like:
var child_process = require('child_process');
child_process.exec('ping
www.google.com -t', function (err, stdout, stderr){
if (err) {
console.log("child processes failed with error code: " +
err.code);
}
console.log(stdout);
});
If you terminate the running process the "ping
www.google.com -t" child process
is still running even when the parent process is already killed.
This happens with one or more children processes.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)