Skip to content

Commit

Permalink
fix: Remove warning about non-unique health namespace (#4479)
Browse files Browse the repository at this point in the history
  • Loading branch information
rolodato authored Aug 12, 2024
1 parent 3b47ae0 commit 6ef7a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/app/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/",
Expand Down

0 comments on commit 6ef7a74

Please sign in to comment.