Skip to content

Commit 28b2b57

Browse files
authored
shorten code; add comment
1 parent 90889b9 commit 28b2b57

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/Connection/Replication/SentinelReplication.php

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

429-
if (isset($slave[31])) {
430-
$masterLinkStatus = $slave[31];
431-
432-
if ($masterLinkStatus !== 'ok') {
433-
continue;
434-
}
429+
// ensure `master-link-status` is ok
430+
if (isset($slave[31]) && $slave[31] === 'err') {
431+
continue;
435432
}
436433

437434
$slaves[] = [

0 commit comments

Comments
 (0)