Skip to content

Commit

Permalink
Fix fmt/args error in exists()
Browse files Browse the repository at this point in the history
This was introduced in PR openshift#25.
  • Loading branch information
frobware committed May 31, 2019
1 parent 6bbaf1a commit 93fbbf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cloud/gcp/actuators/machine/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ func (r *Reconciler) exists() (bool, error) {
if err == nil {
switch instance.Status {
case "TERMINATED":
klog.Infof("Machine %q is considered as non existent as its status is %q", instance.Status)
klog.Infof("Machine %q is considered as non existent as its status is %q", r.machine.Name, instance.Status)
return false, nil
default:
klog.Infof("Machine %q already exists", r.machine.Name)
Expand Down

0 comments on commit 93fbbf7

Please sign in to comment.