You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chef::Log.warn"gitlab-rails 'redis_host' is different than 'bind' value defined for managed redis instance. Are you sure you are pointing to the same redis instance?"ifGitlab['gitlab_rails']['redis_host'] != redis_bind
87
102
88
-
Chef::Log.warn"gitlab-rails 'redis_port' is different than 'port' value defined for managed redis instance. Are you sure you are pointing to the same redis instance?"ifGitlab['gitlab_rails']['redis_port'] != Gitlab['redis']['port']
103
+
Chef::Log.warn"gitlab-rails 'redis_port' is different than '#{redis_port_config_key}' value defined for managed redis instance. Are you sure you are pointing to the same redis instance?"ifGitlab['gitlab_rails']['redis_port'] != redis_port
89
104
90
105
Chef::Log.warn"gitlab-rails 'redis_password' is different than 'master_password' value defined for managed redis instance. Are you sure you are pointing to the same redis instance?"ifGitlab['gitlab_rails']['redis_password'] != Gitlab['redis']['master_password']
raise'Redis announce_ip and announce_ip_from_hostname are mutually exclusive, please unset one of them'ifredis_config['announce_ip'] && redis_config['announce_ip_from_hostname']
19
+
raise'Redis announce_ip and announce_ip_from_hostname are mutually exclusive, please unset one of them'ifredis['announce_ip'] && redis['announce_ip_from_hostname']
0 commit comments