-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cluster: reset handle index on close
It allows reopening a server after it has been closed. Fixes: #6693 PR-URL: #6981 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ron Korving <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
1 parent
c7a3424
commit 27222f4
Showing
3 changed files
with
88 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const cluster = require('cluster'); | ||
|
||
cluster.schedulingPolicy = cluster.SCHED_NONE; | ||
|
||
if (cluster.isMaster) { | ||
const worker1 = cluster.fork(); | ||
worker1.on('listening', common.mustCall(() => { | ||
const worker2 = cluster.fork(); | ||
worker2.on('exit', (code, signal) => { | ||
assert.strictEqual(code, 0, 'worker2 did not exit normally'); | ||
assert.strictEqual(signal, null, 'worker2 did not exit normally'); | ||
worker1.disconnect(); | ||
}); | ||
})); | ||
|
||
worker1.on('exit', common.mustCall((code, signal) => { | ||
assert.strictEqual(code, 0, 'worker1 did not exit normally'); | ||
assert.strictEqual(signal, null, 'worker1 did not exit normally'); | ||
})); | ||
} else { | ||
const net = require('net'); | ||
const server = net.createServer(); | ||
server.listen(common.PORT, common.mustCall(() => { | ||
if (cluster.worker.id === 2) { | ||
server.close(() => { | ||
server.listen(common.PORT, common.mustCall(() => { | ||
server.close(() => { | ||
process.disconnect(); | ||
}); | ||
})); | ||
}); | ||
} | ||
})); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const cluster = require('cluster'); | ||
|
||
cluster.schedulingPolicy = cluster.SCHED_RR; | ||
|
||
if (cluster.isMaster) { | ||
const worker1 = cluster.fork(); | ||
worker1.on('listening', common.mustCall(() => { | ||
const worker2 = cluster.fork(); | ||
worker2.on('exit', (code, signal) => { | ||
assert.strictEqual(code, 0, 'worker2 did not exit normally'); | ||
assert.strictEqual(signal, null, 'worker2 did not exit normally'); | ||
worker1.disconnect(); | ||
}); | ||
})); | ||
|
||
worker1.on('exit', common.mustCall((code, signal) => { | ||
assert.strictEqual(code, 0, 'worker1 did not exit normally'); | ||
assert.strictEqual(signal, null, 'worker1 did not exit normally'); | ||
})); | ||
} else { | ||
const net = require('net'); | ||
const server = net.createServer(); | ||
server.listen(common.PORT, common.mustCall(() => { | ||
if (cluster.worker.id === 2) { | ||
server.close(() => { | ||
server.listen(common.PORT, common.mustCall(() => { | ||
server.close(() => { | ||
process.disconnect(); | ||
}); | ||
})); | ||
}); | ||
} | ||
})); | ||
} |