Add content type to Push

This commit is contained in:
creack 2013-03-22 03:22:36 -07:00
parent 520af226c0
commit 3870ebee6d
1 changed files with 1 additions and 0 deletions

View File

@ -203,6 +203,7 @@ func (graph *Graph) PushImage(imgOrig *Image, authConfig *auth.AuthConfig) error
if err != nil { if err != nil {
return err return err
} }
req.Header.Add("Content-type", "application/json")
req.SetBasicAuth(authConfig.Username, authConfig.Password) req.SetBasicAuth(authConfig.Username, authConfig.Password)
res, err := client.Do(req) res, err := client.Do(req)
if err != nil || res.StatusCode != 200 { if err != nil || res.StatusCode != 200 {