Skip to content

Commit 45b18eb

Browse files
authored
Filter out available slaves based on master-link-status flag (#1440)
1 parent d44f073 commit 45b18eb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Connection/Replication/SentinelReplication.php

+5
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,11 @@ protected function querySentinelForSlaves(NodeConnectionInterface $sentinel, $se
426426
continue;
427427
}
428428

429+
// ensure `master-link-status` is ok
430+
if (isset($slave[31]) && $slave[31] === 'err') {
431+
continue;
432+
}
433+
429434
$slaves[] = [
430435
'host' => $slave[3],
431436
'port' => $slave[5],

0 commit comments

Comments
 (0)