From 5901099ce7290548c295c92d58fa451b59235eec Mon Sep 17 00:00:00 2001 From: Glary-Bot Date: Sun, 3 May 2026 06:17:48 +0000 Subject: [PATCH] feat: align cloud batch count limit with server-side queue cap Raises Comfy.QueueButton.BatchCountLimit on cloud from 32 to 100 to match the server-side MaxQueuedJobsPerUser cap (cloud/infrastructure/dynamicconfig/prod/config.json). Desktop default unchanged at 100. --- src/platform/settings/constants/coreSettings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/settings/constants/coreSettings.ts b/src/platform/settings/constants/coreSettings.ts index f805a4e067..4a6a6f79fa 100644 --- a/src/platform/settings/constants/coreSettings.ts +++ b/src/platform/settings/constants/coreSettings.ts @@ -659,7 +659,7 @@ export const CORE_SETTINGS: SettingParams[] = [ tooltip: 'The maximum number of tasks added to the queue at one button click', type: 'number', - defaultValue: isCloud ? 32 : 100, + defaultValue: 100, versionAdded: '1.3.5' }, {