X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Fexpress-worker_threads%2Fsrc%2Fmain.ts;h=615143646507d8e2f33922426384a19e8e5e906c;hb=65055403a20f94a6326b773ec33d3488901cf0cc;hp=dc70d7ec03a0ceb8589863b615a63e178e0c72b2;hpb=afe77cf70299a29a76fe621f998ecf07ec91c6f9;p=poolifier.git diff --git a/examples/typescript/http-server-pool/express-worker_threads/src/main.ts b/examples/typescript/http-server-pool/express-worker_threads/src/main.ts index dc70d7ec..61514364 100644 --- a/examples/typescript/http-server-pool/express-worker_threads/src/main.ts +++ b/examples/typescript/http-server-pool/express-worker_threads/src/main.ts @@ -23,7 +23,6 @@ expressApp.use(express.json()) expressApp.all('/api/echo', (req: Request, res: Response) => { requestHandlerPool - // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment .execute({ body: req.body }, 'echo') .then(response => { return res.send(response.body).end()