Skip to content

Commit

Permalink
RedundancyGroupDetail: Show root problems if unreachable, not failed
Browse files Browse the repository at this point in the history
  • Loading branch information
nilmerg committed Nov 28, 2024
1 parent 782206f commit e355db1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Icingadb/Widget/Detail/RedundancyGroupDetail.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ protected function createExtensions(): array
*/
protected function createRootProblems(): ?array
{
if (! $this->group->state->failed) {
if ($this->group->state->is_reachable) {
return null;
}

Expand Down

0 comments on commit e355db1

Please sign in to comment.