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.
1 parent a4f02ab commit 4dafc49Copy full SHA for 4dafc49
lib/internal/Magento/Framework/Cache/Backend/Redis.php
@@ -31,6 +31,7 @@ class Redis extends \Cm_Cache_Backend_Redis
31
public function __construct($options = [])
32
{
33
$this->preloadKeys = $options['preload_keys'] ?? [];
34
+ $options['use_lua'] = false;
35
parent::__construct($options);
36
}
37
setup/src/Magento/Setup/Validator/RedisConnectionValidator.php
@@ -25,8 +25,7 @@ public function isValidConnection(array $redisOptions)
25
'db' => '',
26
'password' => null,
27
'timeout' => null,
28
- 'persistent' => '',
29
- 'use_lua' => false
+ 'persistent' => ''
30
];
$config = array_merge($default, $redisOptions);
0 commit comments