Skip to content

Commit

Permalink
minor refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
niontive authored and petrkotas committed Jul 18, 2023
1 parent 2d363e7 commit 782d5fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/monitor/cluster/maintenance.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ func getPucmState(clusterProperties api.OpenShiftClusterProperties) pucmState {
return pucmPlanned
}
return pucmUnplanned
} else if clusterProperties.PucmPending {
}

if clusterProperties.PucmPending {
return pucmPending
}

Expand Down

0 comments on commit 782d5fa

Please sign in to comment.