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 Dec 11, 2024
1 parent ea4ee26 commit f8f2023
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 f8f2023

Please sign in to comment.