From 14bb514267496f335961fd6d77068093523ef99e Mon Sep 17 00:00:00 2001 From: Kirsten G Date: Thu, 13 Jun 2019 15:27:59 -0700 Subject: [PATCH] operator: fix logic setting version for progressing status --- pkg/operator/status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/operator/status.go b/pkg/operator/status.go index 55f783bf5a..c6ef2aa924 100644 --- a/pkg/operator/status.go +++ b/pkg/operator/status.go @@ -29,7 +29,7 @@ func (optr *Operator) syncVersion() error { } // keep the old version and progressing if we fail progressing - if cov1helpers.IsStatusConditionTrue(co.Status.Conditions, configv1.OperatorProgressing) && cov1helpers.IsStatusConditionTrue(co.Status.Conditions, configv1.OperatorDegraded) { + if cov1helpers.IsStatusConditionTrue(co.Status.Conditions, configv1.OperatorProgressing) || cov1helpers.IsStatusConditionTrue(co.Status.Conditions, configv1.OperatorDegraded) { return nil }