From 6ef7a742f0f56aef2335da380770dc7f307d53c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20L=C3=B3pez=20Dato?= Date: Mon, 12 Aug 2024 11:30:43 -0300 Subject: [PATCH] fix: Remove warning about non-unique health namespace (#4479) --- api/app/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/app/urls.py b/api/app/urls.py index c58409d0f3f3..65caa58df8ba 100644 --- a/api/app/urls.py +++ b/api/app/urls.py @@ -17,7 +17,7 @@ re_path(r"^health", include("health_check.urls", namespace="health")), # Aptible health checks must be on /healthcheck and cannot redirect # see https://www.aptible.com/docs/core-concepts/apps/connecting-to-apps/app-endpoints/https-endpoints/health-checks - path("healthcheck", include("health_check.urls", namespace="health")), + path("healthcheck", include("health_check.urls", namespace="aptible")), re_path(r"^version", views.version_info, name="version-info"), re_path( r"^sales-dashboard/",