X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Fexpress-hybrid%2Fsrc%2Fmain.ts;h=e339f83a276893e360140c77c40f510950e9406c;hb=1cecc2f54bbf46c803911e06a83d446b716451dc;hp=838c6e26ed448959a22129b5435482bce7476a25;hpb=d0ed34c9a6f9896c16b1b963e87217bbf75f3393;p=poolifier.git diff --git a/examples/typescript/http-server-pool/express-hybrid/src/main.ts b/examples/typescript/http-server-pool/express-hybrid/src/main.ts index 838c6e26..e339f83a 100644 --- a/examples/typescript/http-server-pool/express-hybrid/src/main.ts +++ b/examples/typescript/http-server-pool/express-hybrid/src/main.ts @@ -17,6 +17,7 @@ const pool = new FixedClusterPool( availableParallelism(), expressWorkerFile, { + enableEvents: false, onlineHandler: () => { pool .execute({ @@ -34,16 +35,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 - `Express is listening in cluster worker on port ${response?.port}` + `Express is listening in cluster worker on port ${response.port}` ) } - return null + return undefined }) - .catch((error) => { + .catch(error => { console.error('Express failed to start in cluster worker:', error) }) },