Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Update child_process.markdown, fix VIP example #25572

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions doc/api/child_process.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -308,9 +308,10 @@ socket to a "special" child process. Other sockets will go to a "normal" process
if (socket.remoteAddress === '74.125.127.100') {
special.send('socket', socket);
return;
}
} else {
// just the usual dudes
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you remove this line. I'm amazed the word dudes is here actually.

normal.send('socket', socket);
normal.send('socket', socket);
}
});
server.listen(1337);

Expand Down