You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnnil, errors.Errorf("failed to discover extension %q: got failure response with message %q", extensionConfig.Name, response.GetMessage())
145
+
log.Info(fmt.Sprintf("failed to discover extension %q: got failure response with message %v", extensionConfig.Name, response.GetMessage()))
146
+
// Don't add the message to the error as it is may be unique causing too many reconciliations. Ref: https://github.com/kubernetes-sigs/cluster-api/issues/6921
147
+
returnnil, errors.Errorf("failed to discover extension %q: got failure response", extensionConfig.Name)
log.Error(err, "extension handler returned a failure response")
368
-
returnerrors.Errorf("failed to call extension handler %q: got failure response with message %q", name, response.GetMessage())
369
+
log.Error(err, "extension handler returned a failure response with message: %v", response.GetMessage())
370
+
// Don't add the message to the error as it is may be unique causing too many reconciliations. Ref: https://github.com/kubernetes-sigs/cluster-api/issues/6921
371
+
returnerrors.Errorf("failed to call extension handler %q: got failure response", name)
0 commit comments