Increase max_concurrent_jobs in job queue (#19797)

This commit is contained in:
Eric Zhang
2026-03-03 15:54:51 -08:00
committed by GitHub
parent c7ffbf25e9
commit e6411ba315

View File

@@ -112,7 +112,7 @@ impl Default for JobQueueConfig {
fn default() -> Self {
Self {
queue_capacity: 1000,
max_concurrent_jobs: 10,
max_concurrent_jobs: 200,
}
}
}