feat: add worker kill handler success or failure reporting
[poolifier.git] / src / pools / cluster / fixed.ts
index b5b32527cf595b8b4ec8f52f3290a10e4647cbd4..9022c7025961e9fc206358a48843c9fc5070b0be 100644 (file)
@@ -72,7 +72,7 @@ export class FixedClusterPool<
     worker.on('disconnect', () => {
       worker.kill()
     })
-    this.sendToWorker(workerNodeKey, { kill: true, workerId: worker.id })
+    await this.sendKillMessageToWorker(workerNodeKey, worker.id)
     worker.disconnect()
     await waitWorkerExit
   }