Dev runs stuck in DEQUEUED - Hobby plan, SDK 4.4.3
Project ref: proj_ggeilfopgbgodymfomff
SDK/CLI: 4.4.3 (latest), Node 24, macOS
Problem: When I batch-trigger 5+ angle-generate tasks in dev, only ~2-4 actually execute. The rest get stuck in DEQUEUED status forever (zero attempts, 0ms duration). They never transition to
EXECUTING or retry. I have to manually cancel them.
What I've tried:
- Fresh npx trigger.dev dev restart (clean .trigger/ dir)
- Confirmed no zombie trigger-dev-run-worker processes (re: #2909)
- Updated all packages to 4.4.3 (latest on npm)
- Used --max-concurrent-runs 25 CLI flag - improved from ~2 to ~4 concurrent, but still not 5/5
- Verified no other dev runs are consuming slots
What I found in the CLI source:
// node_modules/trigger.dev/dist/esm/dev/devSupervisor.js
const maxConcurrentRuns = Math.min(
this.config.maxConcurrentRuns, // from server /dev/config endpoint
this.options.args.maxConcurrentRuns ?? this.config.maxConcurrentRuns
);
this.runLimiter = pLimit(maxConcurrentRuns);
The CLI flag can never exceed what the server config returns. My Hobby plan pricing page says 25 dev concurrent runs, but the server config appears to be sending a lower number.
Question: What maxConcurrentRuns value does the /dev/config endpoint return for my project? And is there a way to increase it to match the 25 advertised on the pricing page?
Example stuck run: run_cmn8qober871e0aod1e0poung (dequeued Mar 27, sat there 20+ min, zero attempts)