Browse Source

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

Daniele Alessandri 14 năm trước cách đây
mục cha
commit
2eec3929fb
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;
     }