ソースを参照

Prevent warnings picking slave from empty pool.

Daniele Alessandri 9 年 前
コミット
44ebf5a5e4
1 ファイル変更3 行追加1 行削除
  1. 3 1
      src/Connection/Aggregate/MasterSlaveReplication.php

+ 3 - 1
src/Connection/Aggregate/MasterSlaveReplication.php

@@ -207,7 +207,9 @@ class MasterSlaveReplication implements ReplicationInterface
      */
     protected function pickSlave()
     {
-        return $this->slaves[array_rand($this->slaves)];
+        if ($this->slaves) {
+            return $this->slaves[array_rand($this->slaves)];
+        }
     }
 
     /**