From a423a33cbe827e5ab5a332d6145f2636a0cbea19 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 6 Jan 2026 12:02:34 +0900 Subject: [PATCH] fix(background-agent): set default concurrency to 5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode) --- src/features/background-agent/concurrency.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/background-agent/concurrency.ts b/src/features/background-agent/concurrency.ts index 6f421489..1475fc53 100644 --- a/src/features/background-agent/concurrency.ts +++ b/src/features/background-agent/concurrency.ts @@ -17,7 +17,7 @@ export class ConcurrencyManager { if (this.config?.providerConcurrency?.[provider]) { return this.config.providerConcurrency[provider] } - return this.config?.defaultConcurrency ?? Infinity + return this.config?.defaultConcurrency ?? 5 } async acquire(model: string): Promise {