build(deps): bump axios in /examples/typescript/http-client-pool
[poolifier.git] / src / pools / abstract-pool.ts
index 1140ca1b4c289e6a31057528d88c6b7e638ae144..604c7af8ad32dde3959dcb75166427458999c9f7 100644 (file)
@@ -1540,13 +1540,6 @@ export abstract class AbstractPool<
     const workerInfo = this.getWorkerInfo(
       this.getWorkerNodeKeyByWorkerId(message.workerId)
     )
-    if (!this.started && workerInfo.ready) {
-      throw new Error(
-        `Ready response already received by worker ${
-          message.workerId as number
-        }`
-      )
-    }
     workerInfo.ready = message.ready as boolean
     workerInfo.taskFunctionNames = message.taskFunctionNames
     if (this.ready) {