Skip to content

Commit

Permalink
Fixed standalone read from stdin regression. Closes #153
Browse files Browse the repository at this point in the history
interestingly enough I could not reproduce this on osx,
but could on linux :s should be ok now
  • Loading branch information
tj committed Oct 3, 2011
1 parent ae02769 commit dd14a09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/master.js
Expand Up @@ -249,7 +249,7 @@ Master.prototype.start = function(fn){
// standalone
} else {
this.on('start', function(){ self.emit('listening'); });
this.acceptFd();
if (this.isChild) this.acceptFd();
this.setupIPC();
}
}
Expand Down

0 comments on commit dd14a09

Please sign in to comment.