This commit is contained in:
shin- 2013-05-01 05:26:52 -07:00
Родитель be791a223b
Коммит 5690562fc8
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -375,7 +375,8 @@ func pushImageRec(graph *Graph, stdout io.Writer, img *Image, registry string, t
if res.StatusCode != 200 {
errBody, err := ioutil.ReadAll(res.Body)
if err != nil {
errBody = []byte(err.Error())
return fmt.Errorf("HTTP code %d while uploading metadata and error when"+
" trying to parse response body: %v", res.StatusCode, err)
}
var jsonBody map[string]string
if err := json.Unmarshal(errBody, &jsonBody); err != nil {