Skip to content

Commit

Permalink
Merge pull request #629 from rgolangh/master
Browse files Browse the repository at this point in the history
node-linker: fix log msg in the machine indexer
  • Loading branch information
openshift-merge-robot committed Jul 4, 2020
2 parents 81dfdad + 72e7f30 commit 2a985cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/nodelink/nodelink_controller.go
Expand Up @@ -522,7 +522,7 @@ func (r *ReconcileNodeLink) listMachinesByField(key, value string) ([]mapiv1beta
machineList,
client.MatchingField(key, value),
); err != nil {
return nil, fmt.Errorf("failed getting node list: %v", err)
return nil, fmt.Errorf("failed getting machine list: %v", err)
}
return machineList.Items, nil
}
Expand Down

0 comments on commit 2a985cf

Please sign in to comment.