From e4483a3ad6ec25ad5d12072a08101ec588f58c72 Mon Sep 17 00:00:00 2001 From: 777genius Date: Fri, 29 May 2026 15:57:12 +0300 Subject: [PATCH] perf: reduce idle team refresh polling --- src/renderer/store/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/store/index.ts b/src/renderer/store/index.ts index 34839ee4..4e446744 100644 --- a/src/renderer/store/index.ts +++ b/src/renderer/store/index.ts @@ -94,7 +94,7 @@ const TEAM_CHANGE_EVENT_BURST_WINDOW_MS = 4_000; const TEAM_CHANGE_EVENT_BURST_WARN_COUNT = 8; const TEAM_CHANGE_EVENT_WARN_THROTTLE_MS = 2_000; const TEAM_VISIBLE_IDLE_WATCHDOG_POLL_MS = 10_000; -const TEAM_VISIBLE_IDLE_WATCHDOG_STALE_MS = 30_000; +const TEAM_VISIBLE_IDLE_WATCHDOG_STALE_MS = 60_000; const TEAM_MESSAGE_FALLBACK_POLL_MS = 10_000; const TASK_LOG_ACTIVITY_PULSE_MS = 3_500; const STARTUP_RUNTIME_STATUS_IDLE_DELAY_MS = 30_000;