Skip to content

Commit c4089cd

Browse files
committed
Fix for overriding local variable
1 parent a7fa8e0 commit c4089cd

File tree

1 file changed

+1
-1
lines changed
  • internal-packages/run-engine/src/engine

1 file changed

+1
-1
lines changed

internal-packages/run-engine/src/engine/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ export class RunEngine {
378378
}
379379
} else {
380380
// For deployed runs, we add the env/worker id as the secondary master queue
381-
let secondaryMasterQueue = this.#environmentMasterQueueKey(environment.id);
381+
secondaryMasterQueue = this.#environmentMasterQueueKey(environment.id);
382382
if (lockedToVersionId) {
383383
secondaryMasterQueue = this.#backgroundWorkerQueueKey(lockedToVersionId);
384384
}

0 commit comments

Comments
 (0)