diff --git a/common-app-lib/src/cmr/common_app/api/health.clj b/common-app-lib/src/cmr/common_app/api/health.clj index 8b70d914d2..876dfff7f6 100644 --- a/common-app-lib/src/cmr/common_app/api/health.clj +++ b/common-app-lib/src/cmr/common_app/api/health.clj @@ -55,6 +55,7 @@ takes a request-context as a parameter to determine if the application and its dependencies are working as expected." [health-fn] - (OPTIONS "/health" req common-routes/options-response) - (GET "/health" {:keys [request-context]} - (get-app-health request-context health-fn))) + (context "/health" [] + (OPTIONS "/" req common-routes/options-response) + (GET "/" {:keys [request-context]} + (get-app-health request-context health-fn))))