X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Finternal%2Fcluster-worker.mjs;h=fee9d3f8b5cbddccd17d58dc4b95cbaf2a5cb8d8;hb=be71219a2e687e8a46a167503df4f5620807db0b;hp=60876bebef04bf97e3a866209fe65792bf6d985f;hpb=440dd7d77da6e027b3b9543504addcf805f76c1d;p=poolifier.git diff --git a/benchmarks/internal/cluster-worker.mjs b/benchmarks/internal/cluster-worker.mjs index 60876beb..fee9d3f8 100644 --- a/benchmarks/internal/cluster-worker.mjs +++ b/benchmarks/internal/cluster-worker.mjs @@ -1,15 +1,15 @@ -import { isMaster } from 'cluster' +import { isPrimary } from 'cluster' import { ClusterWorker } from '../../lib/index.mjs' import { executeTaskFunction } from '../benchmarks-utils.mjs' import { TaskFunctions } from '../benchmarks-types.mjs' const debug = false -const taskFunction = data => { +const taskFunction = (data) => { data = data || {} data.function = data.function || TaskFunctions.jsonIntegerSerialization const res = executeTaskFunction(data) - debug === true && console.debug('This is the main thread ' + isMaster) + debug === true && console.debug(`This is the main thread ${isPrimary}`) return res }