mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

The test in this commit runs correctly if IPC messages are properly consumed and emitted. Otherwise, the test times out. Fixes: https://github.com/nodejs/node/issues/6561 PR-URL: https://github.com/nodejs/node/pull/6909 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
24 lines
562 B
JavaScript
24 lines
562 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
const cluster = require('cluster');
|
|
|
|
cluster.schedulingPolicy = cluster.SCHED_RR;
|
|
|
|
const server = http.createServer();
|
|
|
|
if (cluster.isMaster) {
|
|
server.listen(common.PORT);
|
|
const worker = cluster.fork();
|
|
worker.on('exit', common.mustCall(() => {
|
|
server.close();
|
|
}));
|
|
} else {
|
|
process.on('uncaughtException', common.mustCall((e) => {}));
|
|
server.listen(common.PORT);
|
|
server.on('error', common.mustCall((e) => {
|
|
cluster.worker.disconnect();
|
|
throw e;
|
|
}));
|
|
}
|