X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Ffastify-hybrid%2Fsrc%2Fmain.ts;h=66be31a8aca6bef23391127b94391efc0b75361c;hb=5fcfcc78e5b4bdd65fbd2820b4aea5d94c4f735a;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..66be31a8 100644 --- a/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts +++ b/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts @@ -34,7 +34,7 @@ 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 @@ -43,7 +43,7 @@ const pool = new FixedClusterPool( } return null }) - .catch((error) => { + .catch(error => { console.error('Fastify failed to start in cluster worker:', error) }) },