Skip to content

Commit

Permalink
Merge pull request #1920 from ciaranRoche/OCM-7358
Browse files Browse the repository at this point in the history
OCM-7358 | fix: invert describe out for cluster delete protection
  • Loading branch information
openshift-merge-bot[bot] committed Apr 11, 2024
2 parents c35b5da + 5fa1f5b commit 9355e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/describe/cluster/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ func run(cmd *cobra.Command, argv []string) {
}

deleteProtection := DisabledOutput
if !cluster.DeleteProtection().Enabled() {
if cluster.DeleteProtection().Enabled() {
deleteProtection = EnabledOutput
}

Expand Down

0 comments on commit 9355e1f

Please sign in to comment.