build(deps-dev): bump @rollup/plugin-typescript
[poolifier.git] / examples / typescript / http-server-pool / fastify-hybrid / src / main.ts
index d840dfb9529d0c01e659e7e8b79080cdb3c5938b..6b9c172792805277e23800cb8bd6571f855670fa 100644 (file)
@@ -17,6 +17,7 @@ const pool = new FixedClusterPool<ClusterWorkerData, ClusterWorkerResponse>(
   Math.round(availableParallelism() / 2),
   fastifyWorkerFile,
   {
+    enableEvents: false,
     onlineHandler: () => {
       pool
         .execute({
@@ -34,16 +35,15 @@ const pool = new FixedClusterPool<ClusterWorkerData, ClusterWorkerResponse>(
             console.error('Thread worker error', e)
           }
         })
-        .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 => {
           console.error('Fastify failed to start in cluster worker:', error)
         })
     },