X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Fexpress-hybrid%2Fsrc%2Fexpress-worker.ts;fp=examples%2Ftypescript%2Fhttp-server-pool%2Fexpress-hybrid%2Fsrc%2Fexpress-worker.ts;h=2089b3ef928d95837fafdeaf106dcd33a4bde05c;hb=65055403a20f94a6326b773ec33d3488901cf0cc;hp=f9364b43fe354fc91d6a661516035e72bc90fc4f;hpb=afe77cf70299a29a76fe621f998ecf07ec91c6f9;p=poolifier.git diff --git a/examples/typescript/http-server-pool/express-hybrid/src/express-worker.ts b/examples/typescript/http-server-pool/express-hybrid/src/express-worker.ts index f9364b43..2089b3ef 100644 --- a/examples/typescript/http-server-pool/express-hybrid/src/express-worker.ts +++ b/examples/typescript/http-server-pool/express-hybrid/src/express-worker.ts @@ -54,7 +54,6 @@ class ExpressWorker extends ClusterWorker< application.all('/api/echo', (req: Request, res: Response) => { ExpressWorker.requestHandlerPool - // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment .execute({ data: req.body }, 'echo') .then(response => { return res.send(response.data).end()