Skip to content

Commit 4d2963b

Browse files
olivermeyerclaude
andcommitted
fix(platform): switch health check endpoint from /api/v1/health to /health
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 873e8d0 commit 4d2963b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aignostics/platform/_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def _determine_api_public_health(self) -> Health:
205205
http = self._get_http_pool()
206206
response = http.request(
207207
method="GET",
208-
url=f"{self._settings.api_root}/api/v1/health",
208+
url=f"{self._settings.api_root}/health",
209209
headers={"User-Agent": user_agent()},
210210
timeout=urllib3.Timeout(total=self._settings.health_timeout),
211211
)

0 commit comments

Comments
 (0)