11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst http = require('http'); 41cb0ef41Sopenharmony_ciconst cluster = require('cluster'); 51cb0ef41Sopenharmony_ciconst assert = require('assert'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_cicluster.schedulingPolicy = cluster.SCHED_RR; 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ciconst server = http.createServer(); 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ciif (cluster.isPrimary) { 121cb0ef41Sopenharmony_ci server.listen({ port: 0 }, common.mustCall(() => { 131cb0ef41Sopenharmony_ci const worker = cluster.fork({ PORT: server.address().port }); 141cb0ef41Sopenharmony_ci worker.on('exit', common.mustCall(() => { 151cb0ef41Sopenharmony_ci server.close(); 161cb0ef41Sopenharmony_ci })); 171cb0ef41Sopenharmony_ci })); 181cb0ef41Sopenharmony_ci} else { 191cb0ef41Sopenharmony_ci assert(process.env.PORT); 201cb0ef41Sopenharmony_ci process.on('uncaughtException', common.mustCall()); 211cb0ef41Sopenharmony_ci server.listen(process.env.PORT); 221cb0ef41Sopenharmony_ci server.on('error', common.mustCall((e) => { 231cb0ef41Sopenharmony_ci cluster.worker.disconnect(); 241cb0ef41Sopenharmony_ci throw e; 251cb0ef41Sopenharmony_ci })); 261cb0ef41Sopenharmony_ci} 27