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