From a8617df1d0f5ffc89a6141f2db50198e8371a184 Mon Sep 17 00:00:00 2001 From: Apple Date: Sun, 30 Nov 2025 14:53:17 -0800 Subject: [PATCH] fix: check /health instead of /healthz in invariants script --- scripts/check-invariants.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/check-invariants.py b/scripts/check-invariants.py index 481f22ff..0190befd 100755 --- a/scripts/check-invariants.py +++ b/scripts/check-invariants.py @@ -494,11 +494,11 @@ def check_core_agents_prompts(client: APIClient, results: CheckResults): def check_healthz(client: APIClient, results: CheckResults): - """Перевірити /healthz endpoint""" + """Перевірити /health endpoint""" - data, error = client.get("/healthz") + data, error = client.get("/health") - inv_name = "City service: /healthz" + inv_name = "City service: /health" if error: results.failed.append(InvariantResult( name=inv_name,