You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
const cluster = require('cluster');
|
|
|
|
|
|
|
|
if (cluster.isMaster) {
|
|
|
|
const worker = cluster.fork().on('online', common.mustCall(disconnect));
|
|
|
|
|
|
|
|
function disconnect() {
|
|
|
|
worker.disconnect();
|
|
|
|
// The worker remains in cluster.workers until both disconnect AND exit.
|
|
|
|
// Disconnect is supposed to disconnect all workers, but not workers that
|
|
|
|
// are already disconnected, since calling disconnect() on an already
|
|
|
|
// disconnected worker would error.
|
|
|
|
worker.on('disconnect', common.mustCall(cluster.disconnect));
|
|
|
|
}
|
|
|
|
}
|