Skip to content

Commit 6c34085

Browse files
comfy-pr-botchristian-byrneDrJKL
authored
[backport cloud/1.33] cloud: increase feature flag polling interval to 10min (from 30s) (#7111)
Backport of #7100 to `cloud/1.33` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7111-backport-cloud-1-33-cloud-increase-feature-flag-polling-interval-to-10min-from-30s-2be6d73d3650817ea746fa49eb896a2d) by [Unito](https://www.unito.io) Co-authored-by: Christian Byrne <[email protected]> Co-authored-by: Alexander Brown <[email protected]>
1 parent b663244 commit 6c34085

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extensions/core/cloudRemoteConfig.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ useExtensionService().registerExtension({
99
name: 'Comfy.Cloud.RemoteConfig',
1010

1111
setup: async () => {
12-
// Poll for config updates every 30 seconds
13-
setInterval(() => void loadRemoteConfig(), 30000)
12+
// Poll for config updates every 10 minutes
13+
setInterval(() => void loadRemoteConfig(), 600_000)
1414
}
1515
})

0 commit comments

Comments
 (0)