Skip to content

Commit

Permalink
Move IPC to fourth child stdio. Fixes Unitech#659. See hapijs/good#236
Browse files Browse the repository at this point in the history
…and nodejs/node-v0.x-archive#8669 for more info
  • Loading branch information
chriswiggins committed Nov 4, 2014
1 parent d44ff7d commit 30d3b6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/God/ForkMode.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ module.exports = function ForkMode(God) {
env : pm2_env,
detached : true,
cwd : pm2_env.pm_cwd || process.cwd(),
stdio : ['ignore', null, null]
stdio : [null, null, null, 'ipc']
});
} catch(e) {
God.logAndGenerateError(e);
Expand Down

0 comments on commit 30d3b6c

Please sign in to comment.