We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b925df3 commit 8c8270aCopy full SHA for 8c8270a
pkg/controller/operators/olm/operator.go
@@ -1097,7 +1097,7 @@ func (a *Operator) syncClusterServiceVersion(obj interface{}) (syncError error)
1097
}
1098
1099
// status changed, update CSV
1100
- if !(outCSV.Status.LastUpdateTime == clusterServiceVersion.Status.LastUpdateTime &&
+ if !(outCSV.Status.LastUpdateTime.Equal(clusterServiceVersion.Status.LastUpdateTime) &&
1101
outCSV.Status.Phase == clusterServiceVersion.Status.Phase &&
1102
outCSV.Status.Reason == clusterServiceVersion.Status.Reason &&
1103
outCSV.Status.Message == clusterServiceVersion.Status.Message) {
0 commit comments