Skip to content

Commit

Permalink
Merge pull request #76 from leelavg/fix-lin
Browse files Browse the repository at this point in the history
controllers: use blank identifier for unused param
  • Loading branch information
openshift-merge-bot[bot] authored Feb 14, 2024
2 parents 38c8d3b + a1f7d60 commit 76d6d53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/clusterversion_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (c *ClusterVersionReconciler) SetupWithManager(mgr ctrl.Manager) error {
)
// Reconcile the ClusterVersion object when the operator config map is updated
enqueueClusterVersionRequest := handler.EnqueueRequestsFromMapFunc(
func(_ context.Context, client client.Object) []reconcile.Request {
func(_ context.Context, _ client.Object) []reconcile.Request {
return []reconcile.Request{{
NamespacedName: types.NamespacedName{
Name: clusterVersionName,
Expand Down

0 comments on commit 76d6d53

Please sign in to comment.