mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
Merge pull request #3583 from robyurkowski/fix-redis-typo
Correct typo in Redis settings
This commit is contained in:
commit
4c8d728415
|
@ -37,7 +37,7 @@ class GlobalSetting
|
|||
c = {}
|
||||
c[:host] = redis_host if redis_host
|
||||
c[:port] = redis_port if redis_port
|
||||
c[:password] = redis_host if redis_password.present?
|
||||
c[:password] = redis_password if redis_password.present?
|
||||
c[:db] = redis_db if redis_db != 0
|
||||
c[:db] = 1 if Rails.env == "test"
|
||||
if redis_sentinels.present?
|
||||
|
|
Loading…
Reference in New Issue
Block a user