From e0fc4c6e5e0bf4aac056cfc604450171fe456b3f Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Fri, 15 Sep 2023 12:22:38 +0100 Subject: [PATCH] Fix deprecation warning > DEPRECATION WARNING: The config.web_console.whitelisted_ips is > deprecated and will be ignored in future release of web_console. > Please use config.web_console.allowed_ips instead --- config/environments/development.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/development.rb b/config/environments/development.rb index a92d6846b3..46dfdb6ada 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -95,7 +95,7 @@ end # Allow any IP address in the range 10.10.10.x to access the web console - config.web_console.whitelisted_ips = '10.10.10.0/16' + config.web_console.allowed_ips = '10.10.10.0/16' # Writes useful log files to debug memory leaks, of the sort where have # unintentionally kept references to objects, especially strings.