We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 655b305 commit ef1842eCopy full SHA for ef1842e
src/common/core/urls.py
@@ -4,9 +4,9 @@
4
from common.core import views
5
6
urlpatterns = [
7
- path(r"^version/?", views.version_info),
8
- path(r"^health/liveness/?", views.liveness),
9
- 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")),
10
re_path(r"^health", include("health_check.urls", namespace="health-deprecated")),
11
# Aptible health checks must be on /healthcheck and cannot redirect
12
# see https://www.aptible.com/docs/core-concepts/apps/connecting-to-apps/app-endpoints/https-endpoints/health-checks
0 commit comments