fix: check /health instead of /healthz in invariants script

This commit is contained in:
Apple
2025-11-30 14:53:17 -08:00
parent 5c1d7d15f9
commit a8617df1d0

View File

@@ -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,