fix: check /health instead of /healthz in invariants script
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user