From dd1eff23447be90b8b05b32c941f06cf3d2a5557 Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Sat, 8 Nov 2025 07:06:05 +0900 Subject: [PATCH] [backport rh-test] increase tracking heartbeat interval from 30sec to 5min (#6632) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #6631 to `rh-test` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6632-backport-rh-test-increase-tracking-heartbeat-interval-from-30sec-to-5min-2a46d73d3650812cb1cfc58d0797a9d9) by [Unito](https://www.unito.io) Co-authored-by: Christian Byrne --- src/views/GraphView.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/GraphView.vue b/src/views/GraphView.vue index a016909d6..d05446125 100644 --- a/src/views/GraphView.vue +++ b/src/views/GraphView.vue @@ -324,7 +324,7 @@ const onGraphReady = () => { } } - // 30-second heartbeat interval + // 5-minute heartbeat interval tabCountInterval = window.setInterval(() => { const now = Date.now() @@ -341,7 +341,7 @@ const onGraphReady = () => { // Track tab count (include current tab) const tabCount = activeTabs.size + 1 telemetry.trackTabCount({ tab_count: tabCount }) - }, 30000) + }, 60000 * 5) // Send initial heartbeat tabCountChannel.postMessage({ type: 'heartbeat', tabId: currentTabId })