Skip to content

Commit

Permalink
fix bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
matthagenbuch committed May 21, 2024
1 parent 3eaab87 commit d415fef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/opentelemetrycollector_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ func (r *OpenTelemetryCollectorReconciler) findOtelOwnedObjects(ctx context.Cont
ownedObjects[uid] = object
}
}

configMapList := &corev1.ConfigMapList{}
err = r.List(ctx, configMapList, listOps)
err := r.List(ctx, configMapList, listOps)
if err != nil {
return nil, fmt.Errorf("error listing ConfigMaps: %w", err)
}
Expand Down

0 comments on commit d415fef

Please sign in to comment.