From 6e7ad9cbdef0036358ad94bce2cdd19a307d158e Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 5 Apr 2023 19:40:46 +0200 Subject: [PATCH] refactor: use class property if appropriate MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .../selection-strategies/worker-choice-strategy-context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pools/selection-strategies/worker-choice-strategy-context.ts b/src/pools/selection-strategies/worker-choice-strategy-context.ts index 605cce38..97d08682 100644 --- a/src/pools/selection-strategies/worker-choice-strategy-context.ts +++ b/src/pools/selection-strategies/worker-choice-strategy-context.ts @@ -37,7 +37,7 @@ export class WorkerChoiceStrategyContext< this.execute.bind(this) this.workerChoiceStrategy = getWorkerChoiceStrategy( pool, - workerChoiceStrategyType + this.workerChoiceStrategyType ) } -- 2.34.1