зеркало из https://github.com/microsoft/docker.git
Improved error checking of 'docker pull' by printing body of HTTP error
This commit is contained in:
Родитель
f70bc2c98c
Коммит
7943a02cb6
|
@ -244,7 +244,11 @@ func (graph *Graph) PushImage(stdout io.Writer, imgOrig *Image, authConfig *auth
|
||||||
// FIXME: Do not be silent?
|
// FIXME: Do not be silent?
|
||||||
return nil
|
return nil
|
||||||
default:
|
default:
|
||||||
return fmt.Errorf("Received HTTP code %d while uploading json", res.StatusCode)
|
errBody, err := ioutil.ReadAll(res.Body)
|
||||||
|
if err != nil {
|
||||||
|
errBody = []byte(err.Error())
|
||||||
|
}
|
||||||
|
return fmt.Errorf("HTTP code %d while uploading metadata: %s", res.StatusCode, errBody)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче