Merge dependabot/npm_and_yarn/examples/typescript/http-server-pool/fastify-cluster...
[poolifier.git] / benchmarks / internal / cluster-worker.mjs
index bc3548394616f1426f48dda0c8a4e9719937e15d..69a7ad15cae0ada671f3e4f8ef1261305d26e51a 100644 (file)
@@ -1,15 +1,15 @@
-import { isMaster } from 'cluster'
+import { isPrimary } from 'node: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
 }