move defer statement for readability
Signed-off-by: mqliang <mqliang.zju@gmail.com>
This commit is contained in:
parent
7efcb7496c
commit
6bb27bcfda
1 changed files with 1 additions and 1 deletions
|
@ -53,8 +53,8 @@ func loginV1(authConfig *cliconfig.AuthConfig, registryEndpoint *Endpoint) (stri
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", fmt.Errorf("Server Error: %s", err)
|
return "", fmt.Errorf("Server Error: %s", err)
|
||||||
}
|
}
|
||||||
reqStatusCode = req1.StatusCode
|
|
||||||
defer req1.Body.Close()
|
defer req1.Body.Close()
|
||||||
|
reqStatusCode = req1.StatusCode
|
||||||
reqBody, err = ioutil.ReadAll(req1.Body)
|
reqBody, err = ioutil.ReadAll(req1.Body)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", fmt.Errorf("Server Error: [%#v] %s", reqStatusCode, err)
|
return "", fmt.Errorf("Server Error: [%#v] %s", reqStatusCode, err)
|
||||||
|
|
Loading…
Reference in a new issue