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