X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Ffastify-cluster%2Fsrc%2Fmain.ts;h=eb7720350077b69d28918356389022b9d3c874ce;hb=6ca8100037679d4326b67acb4dac4db628717d94;hp=b462d8c587448ab5825fcce07051c7dbeba4a0b8;hpb=02999424382a7c531bcc2c0485d4ebbe76853d62;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 b462d8c5..eb772035 100644 --- a/examples/typescript/http-server-pool/fastify-cluster/src/main.ts +++ b/examples/typescript/http-server-pool/fastify-cluster/src/main.ts @@ -19,13 +19,13 @@ const pool = new FixedClusterPool( if (response.status) { console.info( // eslint-disable-next-line @typescript-eslint/restrict-template-expressions - `Fastify is listening on cluster 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 cluster worker:', error) + console.error('Fastify failed to start in cluster worker:', error) }) }, errorHandler: (e: Error) => {