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
It is a known issue of io.js, but the fix is wonky and requires a semver-major change. It wasn't landed in the last major but I'm not sure if it will be in 3.x. I'd recommend tracking #774 for the fix.
brendanashworth
added
duplicate
Issues and PRs that are duplicates of other issues or PRs.
child_process
Issues and PRs related to the child_process subsystem.
process
Issues and PRs related to the process subsystem.
and removed
child_process
Issues and PRs related to the child_process subsystem.
labels
Jun 24, 2015
I have this sample code :
Everything works as expected. The entire string is displayed to the output.
Then I add
process.exit()
I noticed the "END" was missing. So I did
node app.js | wc -c
which returned65536
.I'm guessing this is used as buffer size somewhere. But still, why is process.exit() being called before write() has finished ?
iojs v2.3.1
The text was updated successfully, but these errors were encountered: