fix central docker launch without redis
This commit is contained in:
parent
9c6ec2c52e
commit
27ce787fbd
2 changed files with 2 additions and 2 deletions
|
@ -1071,7 +1071,7 @@ public:
|
|||
if (redis.is_object() && _rc == NULL) {
|
||||
_rc = new RedisConfig;
|
||||
_rc->hostname = OSUtils::jsonString(redis["hostname"],"");
|
||||
_rc->port = redis["port"];
|
||||
_rc->port = OSUtils::jsonInt(redis["port"],0);
|
||||
_rc->password = OSUtils::jsonString(redis["password"],"");
|
||||
_rc->clusterMode = OSUtils::jsonBool(redis["clusterMode"], false);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue