build(deps-dev): apply updates
[poolifier.git] / examples / typescript / http-server-pool / fastify-hybrid / src / fastify-worker.ts
index 0566ee014dd75e8520f93ee154f304018707f70d..28bf2a01f1cb0d15aff9b86d3bbbeed98c9bd808 100644 (file)
@@ -13,7 +13,7 @@ ClusterWorkerResponse
   private static readonly startFastify = async (
     workerData?: ClusterWorkerData
   ): Promise<ClusterWorkerResponse> => {
-    const { port, ...fastifyPoolifierOptions } = workerData as ClusterWorkerData
+    const { port, ...fastifyPoolifierOptions } = workerData!
 
     FastifyWorker.fastify = Fastify({
       logger: true
@@ -24,7 +24,7 @@ ClusterWorkerResponse
       fastifyPoolifierOptions
     )
 
-    FastifyWorker.fastify.all('/api/echo', async (request) => {
+    FastifyWorker.fastify.all('/api/echo', async request => {
       return (
         await FastifyWorker.fastify.execute({ data: request.body }, 'echo')
       ).data
@@ -32,7 +32,7 @@ ClusterWorkerResponse
 
     FastifyWorker.fastify.get<{
       Params: { number: number }
-    }>('/api/factorial/:number', async (request) => {
+    }>('/api/factorial/:number', async request => {
       const { number } = request.params
       return (
         await FastifyWorker.fastify.execute({ data: { number } }, 'factorial')