From dc1daa74bfd3f5f27ba307b7baeb46968a5820b0 Mon Sep 17 00:00:00 2001 From: Quentin Champenois <26109239+Quentinchampenois@users.noreply.github.com> Date: Fri, 24 Nov 2023 19:12:34 +0100 Subject: [PATCH] fix: Remove SidekiqAlive from prod env --- config/environments/production.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index 32c042b1d7..4afe55e935 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -148,7 +148,7 @@ config.ssl_options = { redirect: { - exclude: ->(request) { /health_check|sidekiq_alive/.match?(request.path) } + exclude: ->(request) { /health_check/.match?(request.path) } } }