refactor-cores (#2308)
This commit is contained in:
		| @@ -19,7 +19,7 @@ dotenv.config({ | ||||
| if (cluster.isMaster) { | ||||
|   // cluster master | ||||
|  | ||||
|   const core = +process.env.STREAMING_CLUSTER_NUM || (env === 'development' ? 1 : (os.cpus().length > 1 ? os.cpus().length - 1 : 1)) | ||||
|   const core = +process.env.STREAMING_CLUSTER_NUM || (env === 'development' ? 1 : Math.max(os.cpus().length - 1, 1)) | ||||
|   const fork = () => { | ||||
|     const worker = cluster.fork(); | ||||
|     worker.on('exit', (code, signal) => { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user