Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion test/parallel/test-cluster-setup-master.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if (cluster.isWorker) {
};

var totalWorkers = 2;
var onlineWorkers = 0;

// Setup master
cluster.setupMaster({
Expand All @@ -40,6 +41,8 @@ if (cluster.isWorker) {

cluster.on('online', function lisenter(worker) {

onlineWorkers++;

worker.once('message', function(data) {
correctIn += (data === 'custom argument' ? 1 : 0);
if (correctIn === totalWorkers) {
Expand All @@ -49,7 +52,7 @@ if (cluster.isWorker) {
});

// All workers are online
if (cluster.onlineWorkers === totalWorkers) {
if (onlineWorkers === totalWorkers) {
checks.workers = true;
}
});
Expand All @@ -60,6 +63,7 @@ if (cluster.isWorker) {

// Check all values
process.once('exit', function() {
assert.ok(checks.workers, 'Not all workers went online');
assert.ok(checks.args, 'The arguments was noy send to the worker');
assert.ok(checks.setupEvent, 'The setup event was never emitted');
var m = 'The settingsObject do not have correct properties';
Expand Down