X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Ffastify-hybrid%2Fsrc%2Fmain.ts;h=b2174e07bec4cc4b5ff54b07eedd0e1e8452efd9;hb=6d00e3706996fed17b81ddcbdccca1bfd9acf5d2;hp=d840dfb9529d0c01e659e7e8b79080cdb3c5938b;hpb=58399427588adb63380e6bfe955dbdf4ea8ea8a5;p=poolifier.git diff --git a/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts b/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts index d840dfb9..b2174e07 100644 --- a/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts +++ b/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts @@ -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 { ClusterWorkerData, ClusterWorkerResponse } from './types.js' const fastifyWorkerFile = join( @@ -17,6 +19,7 @@ const pool = new FixedClusterPool( Math.round(availableParallelism() / 2), fastifyWorkerFile, { + enableEvents: false, onlineHandler: () => { pool .execute({ @@ -34,16 +37,15 @@ const pool = new FixedClusterPool( 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) }) },