fix(background-agent): set default concurrency to 5

🤖 Generated with [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
This commit is contained in:
YeonGyu-Kim 2026-01-06 12:02:34 +09:00
parent 580d4bb0a1
commit a423a33cbe

View File

@ -17,7 +17,7 @@ export class ConcurrencyManager {
if (this.config?.providerConcurrency?.[provider]) { if (this.config?.providerConcurrency?.[provider]) {
return this.config.providerConcurrency[provider] return this.config.providerConcurrency[provider]
} }
return this.config?.defaultConcurrency ?? Infinity return this.config?.defaultConcurrency ?? 5
} }
async acquire(model: string): Promise<void> { async acquire(model: string): Promise<void> {