Skip to content

Commit d93c1bb

Browse files
committed
include err message suggestion oc login err output
1 parent eecb026 commit d93c1bb

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)