Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/common/core/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
from common.core import views

urlpatterns = [
path(r"^version/?", views.version_info),
path(r"^health/liveness/?", views.liveness),
path(r"^health/readiness/?", include("health_check.urls", namespace="health")),
path("version", views.version_info),
path("health/liveness", views.liveness),
path("health/readiness", include("health_check.urls", namespace="health")),
re_path(r"^health", include("health_check.urls", namespace="health-deprecated")),
# 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
Expand Down