Skip to content

Commit e35544c

Browse files
committed
UnreachableParent: Don't stop recursion at unreachable redundancy groups
1 parent 7f4bd9f commit e35544c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/Icingadb/Model/UnreachableParent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ private static function selectNodes(Connection $db, Model $root): Select
154154
]);
155155
$nodeQuery->filter(Filter::any(
156156
Filter::equal('dependency.state.failed', 'y'),
157-
Filter::equal('to.redundancy_group.state.failed', 'y')
157+
Filter::equal('to.redundancy_group.state.is_reachable', 'n')
158158
));
159159

160160
$nodeSelect = $nodeQuery->assembleSelect();

0 commit comments

Comments
 (0)