From faad2c03de1ee52e86a7741fe5f0e301f57e8608 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Thu, 29 Jan 2026 13:54:52 -0800 Subject: [PATCH] feat: increase allowed batch count (on Run button) on cloud (from 4 to 32) (#8436) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary cloud.comfy.org now suports up to 100 queued jobs at a time ([details](https://x.com/ComfyUI/status/2016622139722572032?s=20)). We can increase the batch count limit to 32. Possible downside is cloud having to reject larger number of jobs over the 100 limit if someone go to 32 and clicks 4+ times. This setting was configurable anyway before, so this is mostly a QoL change. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8436-feat-increase-allowed-batch-count-on-Run-button-on-cloud-from-4-to-32-2f76d73d365081728650fabefc394046) by [Unito](https://www.unito.io) --- 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 95e892c49..3aeda7030 100644 --- a/src/platform/settings/constants/coreSettings.ts +++ b/src/platform/settings/constants/coreSettings.ts @@ -603,7 +603,7 @@ export const CORE_SETTINGS: SettingParams[] = [ tooltip: 'The maximum number of tasks added to the queue at one button click', type: 'number', - defaultValue: isCloud ? 4 : 100, + defaultValue: isCloud ? 32 : 100, versionAdded: '1.3.5' }, {