X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Ffastify-cluster%2Fsrc%2Fmain.ts;h=88167a3c091cdd8ee225b53d160e0ac5983a3d3b;hb=edd5088275648b8ae534dcd75ba23443fe947954;hp=0ac8f5ceac06007176dc425c7410223f2a12df2e;hpb=3b3115396965edad0cf3fefc4f9081977310da34;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 0ac8f5ce..88167a3c 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 worker on port ${response.port}` + `Fastify is listening in cluster worker on port ${response.port}` ) } return null }) .catch(error => { - console.error('Fastify failed to start on worker:', error) + console.error('Fastify failed to start in cluster worker:', error) }) }, errorHandler: (e: Error) => {