From 0437ac1a89ad579aaab9eaa20d87af75e0d065c6 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 2 Mar 2026 04:03:04 +0000 Subject: [PATCH] fix(gateway): raise health-monitor restart cap --- src/gateway/channel-health-monitor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gateway/channel-health-monitor.ts b/src/gateway/channel-health-monitor.ts index 5d841f73688..5f8dc498682 100644 --- a/src/gateway/channel-health-monitor.ts +++ b/src/gateway/channel-health-monitor.ts @@ -7,7 +7,7 @@ const log = createSubsystemLogger("gateway/health-monitor"); const DEFAULT_CHECK_INTERVAL_MS = 5 * 60_000; const DEFAULT_STARTUP_GRACE_MS = 60_000; const DEFAULT_COOLDOWN_CYCLES = 2; -const DEFAULT_MAX_RESTARTS_PER_HOUR = 3; +const DEFAULT_MAX_RESTARTS_PER_HOUR = 10; const ONE_HOUR_MS = 60 * 60_000; /**