mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
7a0e462f9f
Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
68 lines
1.7 KiB
JavaScript
68 lines
1.7 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const cluster = require('cluster');
|
|
const net = require('net');
|
|
|
|
if (!cluster.isMaster) {
|
|
// Exit on first received handle to leave the queue non-empty in master
|
|
process.on('message', function() {
|
|
process.exit(1);
|
|
});
|
|
return;
|
|
}
|
|
|
|
const server = net.createServer(function(s) {
|
|
if (common.isWindows) {
|
|
s.on('error', function(err) {
|
|
// Prevent possible ECONNRESET errors from popping up
|
|
if (err.code !== 'ECONNRESET')
|
|
throw err;
|
|
});
|
|
}
|
|
setTimeout(function() {
|
|
s.destroy();
|
|
}, 100);
|
|
}).listen(0, function() {
|
|
const worker = cluster.fork();
|
|
|
|
function send(callback) {
|
|
const s = net.connect(server.address().port, function() {
|
|
worker.send({}, s, callback);
|
|
});
|
|
|
|
// Errors can happen if this connection
|
|
// is still happening while the server has been closed.
|
|
s.on('error', function(err) {
|
|
if ((err.code !== 'ECONNRESET') &&
|
|
((err.code !== 'ECONNREFUSED'))) {
|
|
throw err;
|
|
}
|
|
});
|
|
}
|
|
|
|
worker.process.once('close', common.mustCall(function() {
|
|
// Otherwise the crash on `channel.fd` access may happen
|
|
assert.strictEqual(worker.process.channel, null);
|
|
server.close();
|
|
}));
|
|
|
|
worker.on('online', function() {
|
|
send(function(err) {
|
|
assert.ifError(err);
|
|
send(function(err) {
|
|
// Ignore errors when sending the second handle because the worker
|
|
// may already have exited.
|
|
if (err) {
|
|
if ((err.message !== 'channel closed') &&
|
|
(err.code !== 'ECONNREFUSED')) {
|
|
throw err;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
});
|