Skip to content

Commit c4d53a2

Browse files
Merge pull request #17073 from juanvallejo/jvallejo/err-message-fixes-oc-login
Automatic merge from submit-queue. include err message suggestion oc login err output Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1406066 Outputs an error message suggestion in the event that a user-specified port is in use by another application / an unexpected response body is found. ``` Response-Body: "123" $ oc login -u test -p test https://127.0.0.1:9443 The server uses a certificate signed by an unknown authority. You can bypass the certificate check, but any data you send to the server could be intercepted by others. Use insecure connections? (y/n): y error: json: cannot unmarshal number into Go value of type util.OauthAuthorizationServerMetadata - verify you have provided the correct host and port and that the server is currently running ``` ``` $ oc login -u test -p test https://127.0.0.1:8443 error: invalid character '<' looking for beginning of value - verify you have provided the correct host and port and that the server is currently running. ``` cc @openshift/cli-review
2 parents 9026566 + d93c1bb commit c4d53a2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pkg/oc/cli/cmd/login/loginoptions.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -225,14 +225,16 @@ func (o *LoginOptions) gatherAuthInfo() error {
225225
clientConfig.KeyFile = o.KeyFile
226226
token, err := tokencmd.RequestToken(o.Config, o.Reader, o.Username, o.Password)
227227
if err != nil {
228+
suggestion := "verify you have provided the correct host and port and that the server is currently running."
229+
228230
// if internal error occurs, suggest making sure
229231
// client is connecting to the right host:port
230232
if statusErr, ok := err.(*kerrors.StatusError); ok {
231233
if statusErr.Status().Code == http.StatusInternalServerError {
232-
return fmt.Errorf("error: The server was unable to respond - verify you have provided the correct host and port and that the server is currently running.")
234+
return fmt.Errorf("error: The server was unable to respond - %v", suggestion)
233235
}
234236
}
235-
return err
237+
return fmt.Errorf("%v - %v", err, suggestion)
236238
}
237239
clientConfig.BearerToken = token
238240

0 commit comments

Comments
 (0)