build(deps-dev): apply updates
[poolifier.git] / examples / typescript / http-server-pool / fastify-cluster / src / main.ts
index 1dc88be27f0ca235775b0ce61014160c464bbe40..541f00178bb00bff56bb1bc515268279938f8c1a 100644 (file)
@@ -1,6 +1,8 @@
 import { dirname, extname, join } from 'node:path'
 import { fileURLToPath } from 'node:url'
-import { FixedClusterPool, availableParallelism } from 'poolifier'
+
+import { availableParallelism, FixedClusterPool } from 'poolifier'
+
 import type { WorkerData, WorkerResponse } from './types.js'
 
 const workerFile = join(
@@ -12,19 +14,19 @@ const pool = new FixedClusterPool<WorkerData, WorkerResponse>(
   availableParallelism(),
   workerFile,
   {
+    enableEvents: false,
     onlineHandler: () => {
       pool
         .execute({ port: 8080 })
-        .then((response) => {
+        .then(response => {
           if (response.status) {
             console.info(
-              // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
               `Fastify is listening in cluster worker on port ${response.port}`
             )
           }
-          return null
+          return undefined
         })
-        .catch((error) => {
+        .catch((error: unknown) => {
           console.error('Fastify failed to start in cluster worker:', error)
         })
     },