Преглед на файлове

Get the connection out of a cluster only once inside Predis\Client::getClientFor().

Daniele Alessandri преди 15 години
родител
ревизия
2eec3929fb
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

@@ -164,7 +164,7 @@ class Client {
 
         $newClient = new Client();
         $newClient->setupClient($this->_options);
-        $newClient->setConnection($this->getConnection($connectionAlias));
+        $newClient->setConnection($connection);
         return $newClient;
     }