mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
ee8183ed85
Removed common.PORT from test-cluster-ipc-throw to eliminate the possibility that a dynamic port used in another test will collide with common.PORT. PR-URL: https://github.com/nodejs/node/pull/12571 Ref: https://github.com/nodejs/node/issues/12376 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
27 lines
694 B
JavaScript
27 lines
694 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
const cluster = require('cluster');
|
|
const assert = require('assert');
|
|
|
|
cluster.schedulingPolicy = cluster.SCHED_RR;
|
|
|
|
const server = http.createServer();
|
|
|
|
if (cluster.isMaster) {
|
|
server.listen({port: 0}, common.mustCall(() => {
|
|
const worker = cluster.fork({PORT: server.address().port});
|
|
worker.on('exit', common.mustCall(() => {
|
|
server.close();
|
|
}));
|
|
}));
|
|
} else {
|
|
assert(process.env.PORT);
|
|
process.on('uncaughtException', common.mustCall((e) => {}));
|
|
server.listen(process.env.PORT);
|
|
server.on('error', common.mustCall((e) => {
|
|
cluster.worker.disconnect();
|
|
throw e;
|
|
}));
|
|
}
|