From 97539b6a96c1a3773aceb492d213620132d2a1fb Mon Sep 17 00:00:00 2001 From: Claire Date: Mon, 17 May 2021 22:36:08 +0200 Subject: [PATCH] Fix host check on healthcheck path not being disabled (#16270) Fixes #16251 There was a typo in #16243 --- config/initializers/1_hosts.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/initializers/1_hosts.rb b/config/initializers/1_hosts.rb index f470fddb3..6ff0845c4 100644 --- a/config/initializers/1_hosts.rb +++ b/config/initializers/1_hosts.rb @@ -31,6 +31,6 @@ Rails.application.configure do config.hosts << host if host.present? config.hosts << web_host if web_host.present? config.hosts.concat(alternate_domains) if alternate_domains.present? - config.hosts_authorization = { exclude: ->(request) { request.path == '/health' } } + config.host_authorization = { exclude: ->(request) { request.path == '/health' } } end end