Procházet zdrojové kódy

Evict connection from slots cache when removed.

Daniele Alessandri před 9 roky
rodič
revize
5adafb352c
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      src/Connection/Aggregate/RedisCluster.php

+ 2 - 0
src/Connection/Aggregate/RedisCluster.php

@@ -117,6 +117,8 @@ class RedisCluster implements ClusterInterface, \IteratorAggregate, \Countable
                 $this->slotsMap
             );
 
+            $this->slots = array_diff($this->slots, array($connection));
+
             return true;
         }