Skip to content
Snippets Groups Projects
Commit ae577460 authored by Jonas Braathen's avatar Jonas Braathen
Browse files

Move health endpoint from /health to /api/health as expected by our load balancer

parent 57910a1d
No related branches found
No related tags found
No related merge requests found
Pipeline #91718 passed
......@@ -35,6 +35,6 @@ urlpatterns: List[URLResolver] = [
), # type: ignore
name="swagger-ui",
),
path("health/", Health.as_view()), # type: ignore
path("api/health/", Health.as_view()), # type: ignore
path("api/v1/", include((api_urls.urlpatterns, "greg"), namespace="v1")),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment