Add configurable parallel extraction count (1-8, default 2)
- New setting maxParallelExtract in AppSettings - UI input in Entpacken tab: "Parallele Entpackungen" - Replaces hardcoded maxConcurrent=2 in acquirePostProcessSlot Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
31ce1e6618
commit
56a507b45d
@@ -96,6 +96,7 @@ export function normalizeSettings(settings: AppSettings): AppSettings {
|
||||
autoResumeOnStart: Boolean(settings.autoResumeOnStart),
|
||||
autoReconnect: Boolean(settings.autoReconnect),
|
||||
maxParallel: clampNumber(settings.maxParallel, defaults.maxParallel, 1, 50),
|
||||
maxParallelExtract: clampNumber(settings.maxParallelExtract, defaults.maxParallelExtract, 1, 8),
|
||||
retryLimit: clampNumber(settings.retryLimit, defaults.retryLimit, 0, 99),
|
||||
reconnectWaitSeconds: clampNumber(settings.reconnectWaitSeconds, defaults.reconnectWaitSeconds, 10, 600),
|
||||
completedCleanupPolicy: settings.completedCleanupPolicy,
|
||||
|
||||
Reference in New Issue
Block a user