X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Fexpress-cluster%2Fsrc%2Fmain.ts;h=0b7c45b18d7a8aa73d2edb14535ab8a229e1c7a8;hb=80605a6c89c41c5b71e83385f615f85483987ea1;hp=2184f970c3a819c2ed67ca02d1370c66e36a6b13;hpb=c63a35a04c190989be80f9218d97e0aca739475e;p=poolifier.git diff --git a/examples/typescript/http-server-pool/express-cluster/src/main.ts b/examples/typescript/http-server-pool/express-cluster/src/main.ts index 2184f970..0b7c45b1 100644 --- a/examples/typescript/http-server-pool/express-cluster/src/main.ts +++ b/examples/typescript/http-server-pool/express-cluster/src/main.ts @@ -1,6 +1,8 @@ import { dirname, extname, join } from 'node:path' import { fileURLToPath } from 'node:url' -import { FixedClusterPool, availableParallelism } from 'poolifier' + +import { availableParallelism, FixedClusterPool } from 'poolifier' + import type { WorkerData, WorkerResponse } from './types.js' const workerFile = join( @@ -19,17 +21,18 @@ const pool = new FixedClusterPool( .then(response => { if (response.status) { console.info( - `Express is listening in cluster worker on port ${response.port}` + // eslint-disable-next-line @typescript-eslint/restrict-template-expressions + `Express is listening in cluster worker on port ${response.port?.toString()}` ) } return undefined }) - .catch(error => { + .catch((error: unknown) => { console.error('Express failed to start in cluster worker:', error) }) }, errorHandler: (e: Error) => { console.error('Cluster worker error:', e) - } + }, } )