From 9fcae8458e917f5062b10240a83ccce81d7f04d6 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 29 Apr 2026 15:57:52 +0100 Subject: [PATCH] fix: accept channel lastConnectedAt health snapshots --- src/gateway/channel-health-policy.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gateway/channel-health-policy.ts b/src/gateway/channel-health-policy.ts index 47f8ea59f81..e80ef5bd5e4 100644 --- a/src/gateway/channel-health-policy.ts +++ b/src/gateway/channel-health-policy.ts @@ -10,6 +10,7 @@ export type ChannelHealthSnapshot = { activeRuns?: number; lastRunActivityAt?: number | null; lastEventAt?: number | null; + lastConnectedAt?: number | null; lastTransportActivityAt?: number | null; lastStartAt?: number | null; reconnectAttempts?: number;