refactor: cleanup cluster ESM issue workaround
[poolifier.git] / src / pools / selection-strategies / worker-choice-strategy-context.ts
index 2bc99a7b47f14b86b0f43104723b1735f2eed0a1..122774dd0e48c157d5d7c7ce5bdc4ea590281087 100644 (file)
@@ -171,7 +171,7 @@ export class WorkerChoiceStrategyContext<
       ) as IWorkerChoiceStrategy
     ).choose()
     if (workerNodeKey == null) {
-      throw new Error('Worker node key chosen is null or undefined')
+      throw new TypeError('Worker node key chosen is null or undefined')
     }
     return workerNodeKey
   }
@@ -179,7 +179,7 @@ export class WorkerChoiceStrategyContext<
   /**
    * Removes the worker node key from the worker choice strategy in the context.
    *
-   * @param workerNodeKey - The key of the worker node.
+   * @param workerNodeKey - The worker node key.
    * @returns `true` if the removal is successful, `false` otherwise.
    */
   public remove (workerNodeKey: number): boolean {