@@ -215,7 +215,7 @@ func calculateAvailableUpdatesStatus(ctx context.Context, clusterID string, prox
215
215
}
216
216
}
217
217
218
- cvoCurrent , err = convertRetreivedUpdateToRelease (current )
218
+ cvoCurrent , err = convertRetrievedUpdateToRelease (current )
219
219
if err != nil {
220
220
return cvoCurrent , nil , configv1.ClusterOperatorStatusCondition {
221
221
Type : configv1 .RetrievedUpdates , Status : configv1 .ConditionFalse , Reason : "ResponseInvalid" ,
@@ -225,7 +225,7 @@ func calculateAvailableUpdatesStatus(ctx context.Context, clusterID string, prox
225
225
226
226
var cvoUpdates []configv1.Release
227
227
for _ , update := range updates {
228
- cvoUpdate , err := convertRetreivedUpdateToRelease (update )
228
+ cvoUpdate , err := convertRetrievedUpdateToRelease (update )
229
229
if err != nil {
230
230
return cvoCurrent , nil , configv1.ClusterOperatorStatusCondition {
231
231
Type : configv1 .RetrievedUpdates , Status : configv1 .ConditionFalse , Reason : "ResponseInvalid" ,
@@ -243,7 +243,7 @@ func calculateAvailableUpdatesStatus(ctx context.Context, clusterID string, prox
243
243
}
244
244
}
245
245
246
- func convertRetreivedUpdateToRelease (update cincinnati.Update ) (configv1.Release , error ) {
246
+ func convertRetrievedUpdateToRelease (update cincinnati.Update ) (configv1.Release , error ) {
247
247
cvoUpdate := configv1.Release {
248
248
Version : update .Version .String (),
249
249
Image : update .Image ,
0 commit comments