mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
78954846c3
PR-URL: https://github.com/nodejs/node/pull/46161 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
21 lines
464 B
JavaScript
21 lines
464 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const cluster = require('cluster');
|
|
const net = require('net');
|
|
|
|
cluster.schedulingPolicy = cluster.SCHED_RR;
|
|
|
|
if (cluster.isPrimary) {
|
|
const worker = cluster.fork();
|
|
worker.on('exit', common.mustCall());
|
|
} else {
|
|
const server = net.createServer(common.mustNotCall());
|
|
server.listen(0, common.mustCall(() => {
|
|
server.ref();
|
|
server.unref();
|
|
process.channel.unref();
|
|
}));
|
|
server.unref();
|
|
}
|