Skip to content

Commit d70b0f8

Browse files
committed
fix(run-engine): avoid Array.at in queue key parser
1 parent 5c7f1ce commit d70b0f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal-packages/run-engine/src/run-queue/keyProducer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ export class RunQueueFullKeyProducer implements RunQueueKeyProducer {
352352
projectId: parts[3],
353353
envId: parts[5],
354354
queue: parts[7],
355-
concurrencyKey: parts.at(9),
355+
concurrencyKey: parts[9],
356356
};
357357
}
358358

0 commit comments

Comments
 (0)