From 4ae9ee4d703e0dcb8385939b9d2f5223d4a5f7c3 Mon Sep 17 00:00:00 2001 From: Apple Date: Sun, 30 Nov 2025 14:53:53 -0800 Subject: [PATCH] fix: allow healthy status in invariants check --- scripts/check-invariants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check-invariants.py b/scripts/check-invariants.py index 0190befd..6c04e455 100755 --- a/scripts/check-invariants.py +++ b/scripts/check-invariants.py @@ -508,11 +508,11 @@ def check_healthz(client: APIClient, results: CheckResults): )) else: status = data.get("status", "unknown") if data else "unknown" - if status == "ok": + if status in ["ok", "healthy"]: results.passed.append(InvariantResult( name=inv_name, passed=True, - message="City service healthy" + message=f"City service healthy: {status}" )) else: results.failed.append(InvariantResult(