Skip to content

Commit d76467c

Browse files
committed
Run queue now works with the worker queue / master queue split
1 parent ce50f68 commit d76467c

File tree

18 files changed

+905
-409
lines changed

18 files changed

+905
-409
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
"type": "node-terminal",
147147
"request": "launch",
148148
"name": "Debug RunQueue tests",
149-
"command": "pnpm run test ./src/run-queue/index.test.ts",
149+
"command": "pnpm run test ./src/run-queue/index.test.ts --run",
150150
"cwd": "${workspaceFolder}/internal-packages/run-engine",
151151
"sourceMaps": true
152152
},

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export type RunEngineOptions = {
2929
};
3030
queue: {
3131
redis: RedisOptions;
32+
workerOptions?: WorkerConcurrencyOptions;
3233
retryOptions?: RetryOptions;
3334
defaultEnvConcurrency?: number;
3435
queueSelectionStrategyOptions?: Pick<

0 commit comments

Comments
 (0)