Merge pull request #3981 from milosgajdos/set-content-type-client-readfrom

Set Content-Type header in registry client ReadFrom
This commit is contained in:
Milos Gajdos 2023-08-15 15:21:20 +01:00 committed by GitHub
commit 2918c3244d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,6 +43,8 @@ func (hbu *httpBlobUpload) ReadFrom(r io.Reader) (n int64, err error) {
}
defer req.Body.Close()
req.Header.Set("Content-Type", "application/octet-stream")
resp, err := hbu.client.Do(req)
if err != nil {
return 0, err