On Tue, Jun 19, 2012 at 6:16 AM, Tim Dickinson <[email protected]> wrote: > Ok so with using node 0.7.11 can i setup an ipc channel using "{ stdio: > ['ipc', 'pipe', 'pipe'] }". I've played around with it but can't seem to get > it to work.Am I don't this I'm going about it right, Even something like > "{ stdio: 'ipc' }" shold throw an error but does not so i must be going > about it wrong.
options.stdio doesn't work with fork(). fork() makes certain assumptions about how stdio is set up and simply ignores options.stdio. Use spawn() instead. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
