-
Notifications
You must be signed in to change notification settings - Fork 29.7k
New issue
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
doc: document that 'ipc'
is required with fork stdio option
#8290
Conversation
@@ -290,6 +290,17 @@ parent process using the file descriptor (fd) identified using the | |||
environment variable `NODE_CHANNEL_FD` on the child process. The input and | |||
output on this fd is expected to be line delimited JSON objects. | |||
|
|||
When specifying the [`stdio`][] option, the value *must* be a JSON Array |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JSON Array -> array
I would just add this into the existing |
Fixed with |
Yea, the |
oh.. you mean up in the |
Yea, but I won't fight the existing approach. |
heh... I can do that. I thought you meant moving it down into the more extensive documentation under |
LGTM |
1 similar comment
LGTM |
Landed in f10e1ed |
Fixes: nodejs#8167 PR-URL: nodejs#8290 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Checklist
make -j4 test
(UNIX), orvcbuild test nosign
(Windows) passesAffected core subsystem(s)
doc
Description of change
document that
'ipc'
is required with fork stdio optionFixes: #8167