From 827c8d2e71704c795737be63fae582ef78b4a7bc Mon Sep 17 00:00:00 2001 From: SamNet-dev Date: Thu, 29 Jan 2026 19:21:56 -0600 Subject: [PATCH] Fix false WAITING status in health check for connected containers without stats --- conduit.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conduit.sh b/conduit.sh index b09dd33..5a5a24b 100644 --- a/conduit.sh +++ b/conduit.sh @@ -3888,6 +3888,8 @@ health_check() { else echo -e "${GREEN}OK${NC} (Connected, awaiting peers)" fi + elif echo "$hc_logs" | grep -q "\[OK\] Connected to Psiphon network"; then + echo -e "${GREEN}OK${NC} (Connected, no stats available)" else local info_lines=0 if [ -n "$hc_logs" ]; then