There was an error while loading. Please reload this page.
1 parent b63a8ef commit 4c3d667Copy full SHA for 4c3d667
1 file changed
internal-packages/run-engine/src/engine/index.ts
@@ -469,10 +469,8 @@ export class RunEngine {
469
const batchQueueRedis = options.batchQueue?.redis ?? options.queue.redis;
470
471
this.batchQueue = new BatchQueue({
472
- redis: {
473
- keyPrefix: `${batchQueueRedis.keyPrefix ?? ""}batch-queue:`,
474
- ...batchQueueRedis,
475
- },
+ // Preserve the configured namespace so existing batch state remains addressable.
+ redis: batchQueueRedis,
476
drr: {
477
quantum: options.batchQueue?.drr?.quantum ?? 5,
478
maxDeficit: options.batchQueue?.drr?.maxDeficit ?? 50,
0 commit comments