We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6747c9d + 29ac716 commit 914ad18Copy full SHA for 914ad18
setup/src/Magento/Setup/Validator/RedisConnectionValidator.php
@@ -40,6 +40,9 @@ public function isValidConnection(array $redisOptions)
40
$config['password']
41
);
42
$redisClient->setMaxConnectRetries(1);
43
+ if (isset($config['password']) && $config['password'] !== '') {
44
+ $redisClient->auth($config['password']);
45
+ }
46
$redisClient->connect();
47
} catch (\CredisException $e) {
48
return false;
0 commit comments