11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst cluster = require('cluster'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ciif (cluster.isPrimary) { 71cb0ef41Sopenharmony_ci const worker = cluster.fork(); 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ci worker.on('exit', common.mustCall((code, signal) => { 101cb0ef41Sopenharmony_ci assert.strictEqual(code, 0); 111cb0ef41Sopenharmony_ci assert.strictEqual(signal, null); 121cb0ef41Sopenharmony_ci })); 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_ci worker.on('online', () => { 151cb0ef41Sopenharmony_ci worker.send({ 161cb0ef41Sopenharmony_ci cmd: 'NODE_CLUSTER', 171cb0ef41Sopenharmony_ci ack: -1 181cb0ef41Sopenharmony_ci }, () => { 191cb0ef41Sopenharmony_ci worker.disconnect(); 201cb0ef41Sopenharmony_ci }); 211cb0ef41Sopenharmony_ci }); 221cb0ef41Sopenharmony_ci} 23