fix: ensure worker removal impact is propated to worker choice strategy
[poolifier.git] / src / pools / selection-strategies / less-used-worker-choice-strategy.ts
index 2ed58c96eb3596dfbfafd6416b82b2e51f7e5a31..9cae4a54ae336204e4ab00f29b7789c280101682 100644 (file)
@@ -34,4 +34,9 @@ export class LessUsedWorkerChoiceStrategy<
     }
     return lessUsedWorkerKey
   }
+
+  /** {@inheritDoc} */
+  public remove (workerKey: number): boolean {
+    return true
+  }
 }