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