From 3b69c01b41cef014ceda84d48d3b0e29d62ce185 Mon Sep 17 00:00:00 2001 From: timedout Date: Mon, 3 Aug 2026 15:21:21 +0100 Subject: [PATCH] feat: Mark servers as healthy when they successfully make an inbound request --- src/api/router/auth.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/api/router/auth.rs b/src/api/router/auth.rs index f1450419a..8906277b8 100644 --- a/src/api/router/auth.rs +++ b/src/api/router/auth.rs @@ -149,6 +149,9 @@ async fn verify + Sync>( ))); } + // Ping the server as healthy + services.sending.mark_healthy(&output.origin); + Ok(output.origin) }, | Err(err) =>