Skip to content

Commit 08be93f

Browse files
authored
Fix error message
1 parent 9bd545c commit 08be93f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/controllers/machine/machine_controller_phases.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ func (r *Reconciler) reconcileInfrastructure(ctx context.Context, cluster *clust
313313
switch {
314314
case err == util.ErrUnstructuredFieldNotFound: // no-op
315315
case err != nil:
316-
return ctrl.Result{}, errors.Wrapf(err, "failed to failure domain from infrastructure provider for Machine %q in namespace %q", m.Name, m.Namespace)
316+
return ctrl.Result{}, errors.Wrapf(err, "failed to retrieve failure domain from infrastructure provider for Machine %q in namespace %q", m.Name, m.Namespace)
317317
default:
318318
m.Spec.FailureDomain = pointer.String(failureDomain)
319319
}

0 commit comments

Comments
 (0)