Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
[Squash] nit
Co-Authored-By: jasnell <jasnell@gmail.com>
  • Loading branch information
vsemozhetbyt and jasnell authored Oct 19, 2018
commit 9e8e181c6e1abdc400f70cc685b7b7444d1b479e
2 changes: 1 addition & 1 deletion doc/api/dgram.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ When sharing a UDP socket across multiple `cluster` workers, the
const cluster = require('cluster');
const dgram = require('dgram');
if (cluster.isMaster) {
cluster.fork(); // Works ok
cluster.fork(); // Works ok.
cluster.fork(); // Fails with EADDRINUSE.
} else {
const s = dgram.createSocket('udp4');
Expand Down