Increase worker concurrency: 2 -> 5 (#168)

This commit is contained in:
Chris Estreich 2025-07-01 08:03:12 -08:00 committed by GitHub
parent 72d219b691
commit 08469f8ca3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@ import { isFlyMachine, isDockerContainer } from './utils';
export class WorkerController {
private readonly POLL_INTERVAL_MS = 5000;
private readonly MAX_WORKERS = 2;
private readonly MAX_WORKERS = 5;
private queue: Queue;
private stalledJobsWorker: Worker;