diff --git a/pkg/cvo/status.go b/pkg/cvo/status.go index 83cf0112dc..bbd365a3d2 100644 --- a/pkg/cvo/status.go +++ b/pkg/cvo/status.go @@ -134,7 +134,7 @@ func mergeOperatorHistory(config *configv1.ClusterVersion, desired configv1.Rele } // Prune least informative history entry when at maxHistory. - prune(config.Status.History, MaxHistory) + config.Status.History = prune(config.Status.History, MaxHistory) config.Status.Desired = desired }