feat: add median task run time statistic
[poolifier.git] / src / pools / selection-strategies / weighted-round-robin-worker-choice-strategy.ts
index ea598b207f2e1b20358ce0cd6c5da134077ae8f1..96b5867b5bfb1db98f8a8afd4505b5c24da75505 100644 (file)
@@ -33,7 +33,8 @@ export class WeightedRoundRobinWorkerChoiceStrategy<
   /** @inheritDoc */
   public readonly requiredStatistics: RequiredStatistics = {
     runTime: true,
-    avgRunTime: true
+    avgRunTime: true,
+    medRunTime: false
   }
 
   /**