refactor: remove blank line
[poolifier.git] / benchmarks / internal / cluster-worker.mjs
index bc3548394616f1426f48dda0c8a4e9719937e15d..fee9d3f8b5cbddccd17d58dc4b95cbaf2a5cb8d8 100644 (file)
@@ -1,4 +1,4 @@
-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'
@@ -9,7 +9,7 @@ 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
 }