Skip to content

Commit

Permalink
Fix deprecation warning
Browse files Browse the repository at this point in the history
> 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
  • Loading branch information
gbp committed Sep 15, 2023
1 parent fa0ea12 commit e0fc4c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/environments/development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit e0fc4c6

Please sign in to comment.