From fa57e434f5ebe048eb63be5ecd5f0a902f3f37ea Mon Sep 17 00:00:00 2001 From: Ahmad Farhat <ahmad.af.farhat@gmail.com> Date: Thu, 15 Jun 2023 14:24:56 -0400 Subject: [PATCH] Fix health check endpoint (#5239) --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 4696bc02..33711f3b 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -26,7 +26,7 @@ Rails.application.routes.draw do post '/recording_ready', to: 'external#recording_ready' # Health checks - get '/health_checks', to: 'health_checks#check' + get '/health_check', to: 'health_checks#check' # All the Api endpoints must be under /api/v1 and must have an extension .json. namespace :api do -- GitLab