mirror of
https://github.com/maximebf/php-debugbar.git
synced 2025-06-25 20:23:46 +02:00
Fix when using RedisCluster (#533)
This commit is contained in:
@ -57,7 +57,7 @@ class RedisStorage implements StorageInterface
|
||||
{
|
||||
$results = [];
|
||||
$cursor = "0";
|
||||
$isPhpRedis = get_class($this->redis) === 'Redis';
|
||||
$isPhpRedis = get_class($this->redis) === 'Redis' || get_class($this->redis) === 'RedisCluster';
|
||||
|
||||
do {
|
||||
if ($isPhpRedis) {
|
||||
|
Reference in New Issue
Block a user