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 has been archived by the owner on May 4, 2018. It is now read-only.
This results in fd 2 in child not being valid (an unusual condition, which libuv tries to avoid). The invalidity causes and write to fd 2 (console.error in node), to cause node to terminate (seemingly silently, its probably trying to write a stack trace, but since that would go to stderr, that doesn't work so well).
The text was updated successfully, but these errors were encountered:
Instead, it results in the child not having a valid fd at that position.
Reproduceable in node with https://gist.github.com/sam-github/8341916
strace shows what's happening in child: https://gist.github.com/sam-github/8341573
This results in fd 2 in child not being valid (an unusual condition, which libuv tries to avoid). The invalidity causes and write to fd 2 (console.error in node), to cause node to terminate (seemingly silently, its probably trying to write a stack trace, but since that would go to stderr, that doesn't work so well).
The text was updated successfully, but these errors were encountered: