If a user removes "early_hints" entirely from the config file, a SIGHUP needs to restore the default value. This is consistent with the behavior of all the other configuration variables.
Cc: Jean Boussier <[email protected]> --- lib/unicorn/configurator.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/unicorn/configurator.rb b/lib/unicorn/configurator.rb index b0606af..ecdf03e 100644 --- a/lib/unicorn/configurator.rb +++ b/lib/unicorn/configurator.rb @@ -53,6 +53,7 @@ class Unicorn::Configurator server.logger.info("worker=#{worker.nr} ready") }, :pid => nil, + :early_hints => false, :worker_exec => false, :preload_app => false, :check_client_connection => false, -- unsubscribe: one-click, see List-Unsubscribe header archive: https://yhbt.net/unicorn-public/
