X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fselection-strategies%2Fleast-elu-worker-choice-strategy.ts;h=ead02e850c8a82b4abf38c7a79b0f2155d19fb0a;hb=3dcc95e54a6bfeb4b27460d60d3c90d27ac352dd;hp=6eaaacfbd4545d82c52c22eadc160ee286a8011a;hpb=7f13b544e1f3041a2a2e8cf16ec714b4d2e7c2ce;p=poolifier.git diff --git a/src/pools/selection-strategies/least-elu-worker-choice-strategy.ts b/src/pools/selection-strategies/least-elu-worker-choice-strategy.ts index 6eaaacfb..ead02e85 100644 --- a/src/pools/selection-strategies/least-elu-worker-choice-strategy.ts +++ b/src/pools/selection-strategies/least-elu-worker-choice-strategy.ts @@ -5,12 +5,11 @@ import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy. import type { IWorkerChoiceStrategy, TaskStatisticsRequirements, - WorkerChoiceStrategyOptions + WorkerChoiceStrategyOptions, } from './selection-strategies-types.js' /** * Selects the worker with the least ELU. - * * @typeParam Worker - Type of worker which manages the strategy. * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data. * @typeParam Response - Type of execution response. This can only be structured-cloneable data. @@ -29,8 +28,8 @@ export class LeastEluWorkerChoiceStrategy< elu: { aggregate: true, average: false, - median: false - } + median: false, + }, } /** @inheritDoc */