build(deps-dev): apply updates
[poolifier.git] / examples / typescript / http-server-pool / fastify-cluster / src / main.ts
index c165157afdbdb907983822ce941932b06f1ba95e..541f00178bb00bff56bb1bc515268279938f8c1a 100644 (file)
@@ -26,7 +26,7 @@ const pool = new FixedClusterPool<WorkerData, WorkerResponse>(
           }
           return undefined
         })
-        .catch(error => {
+        .catch((error: unknown) => {
           console.error('Fastify failed to start in cluster worker:', error)
         })
     },