Merge pull request #11250 from nupplaphil/bug/redis_pw
Don't use empty values for redis password and port
This commit is contained in:
commit
7dadc7f6dc
3 changed files with 4 additions and 4 deletions
|
@ -151,7 +151,7 @@ HELP;
|
||||||
$this->out("{$cat}.{$key}[{$k}] => " . (is_array($v) ? implode(', ', $v) : $v));
|
$this->out("{$cat}.{$key}[{$k}] => " . (is_array($v) ? implode(', ', $v) : $v));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$this->out("{$cat}.{$key} => " . $value);
|
$this->out("{$cat}.{$key} => " . ($value ?? 'NULL'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -59,13 +59,13 @@ class RedisCache extends AbstractCache implements ICanCacheInMemory
|
||||||
$redis_pw = $config->get('system', 'redis_password');
|
$redis_pw = $config->get('system', 'redis_password');
|
||||||
$redis_db = $config->get('system', 'redis_db', 0);
|
$redis_db = $config->get('system', 'redis_db', 0);
|
||||||
|
|
||||||
if (isset($redis_port) && !@$this->redis->connect($redis_host, $redis_port)) {
|
if (!empty($redis_port) && !@$this->redis->connect($redis_host, $redis_port)) {
|
||||||
throw new CachePersistenceException('Expected Redis server at ' . $redis_host . ':' . $redis_port . ' isn\'t available');
|
throw new CachePersistenceException('Expected Redis server at ' . $redis_host . ':' . $redis_port . ' isn\'t available');
|
||||||
} elseif (!@$this->redis->connect($redis_host)) {
|
} elseif (!@$this->redis->connect($redis_host)) {
|
||||||
throw new CachePersistenceException('Expected Redis server at ' . $redis_host . ' isn\'t available');
|
throw new CachePersistenceException('Expected Redis server at ' . $redis_host . ' isn\'t available');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($redis_pw) && !$this->redis->auth($redis_pw)) {
|
if (!empty($redis_pw) && !$this->redis->auth($redis_pw)) {
|
||||||
throw new CachePersistenceException('Cannot authenticate redis server at ' . $redis_host . ':' . $redis_port);
|
throw new CachePersistenceException('Cannot authenticate redis server at ' . $redis_host . ':' . $redis_port);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -102,7 +102,7 @@ class ConfigConsoleTest extends ConsoleTest
|
||||||
$console->setArgument(0, 'config');
|
$console->setArgument(0, 'config');
|
||||||
$console->setArgument(1, 'test');
|
$console->setArgument(1, 'test');
|
||||||
$txt = $this->dumpExecute($console);
|
$txt = $this->dumpExecute($console);
|
||||||
self::assertEquals("config.test => \n", $txt);
|
self::assertEquals("config.test => NULL\n", $txt);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testSetArrayValue()
|
public function testSetArrayValue()
|
||||||
|
|
Loading…
Reference in a new issue