X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Ffastify-cluster%2Fsrc%2Fmain.ts;h=588adbedd44539fb8488ec22c616da1a955d7a44;hb=e1b768660b1cb0a444a73366e047d7c6fb56b570;hp=ec117cbc4df0410993ae9eadef781992438d9602;hpb=98e283831a41164499c05cf895ce242acbd31251;p=poolifier.git diff --git a/examples/typescript/http-server-pool/fastify-cluster/src/main.ts b/examples/typescript/http-server-pool/fastify-cluster/src/main.ts index ec117cbc..588adbed 100644 --- a/examples/typescript/http-server-pool/fastify-cluster/src/main.ts +++ b/examples/typescript/http-server-pool/fastify-cluster/src/main.ts @@ -12,6 +12,7 @@ const pool = new FixedClusterPool( availableParallelism(), workerFile, { + enableEvents: false, onlineHandler: () => { pool .execute({ port: 8080 }) @@ -19,17 +20,17 @@ const pool = new FixedClusterPool( if (response.status) { console.info( // eslint-disable-next-line @typescript-eslint/restrict-template-expressions - `Fastify is listening on worker on port ${response.port}` + `Fastify is listening in cluster worker on port ${response.port}` ) } - return null + return undefined }) .catch(error => { - console.error('Fastify failed to start on worker:', error) + console.error('Fastify failed to start in cluster worker:', error) }) }, errorHandler: (e: Error) => { - console.error(e) + console.error('Cluster worker error:', e) } } )