1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-13 04:26:46 +02:00
This commit is contained in:
Chris Lu 2018-12-04 22:57:26 -08:00
commit e2276b0626

View file

@ -92,6 +92,12 @@ func upload_content(uploadUrl string, fillBufferFunction func(w io.Writer) error
return nil, post_err return nil, post_err
} }
defer resp.Body.Close() defer resp.Body.Close()
if resp.StatusCode < http.StatusOK ||
resp.StatusCode > http.StatusIMUsed {
return nil, errors.New(http.StatusText(resp.StatusCode))
}
etag := getEtag(resp) etag := getEtag(resp)
resp_body, ra_err := ioutil.ReadAll(resp.Body) resp_body, ra_err := ioutil.ReadAll(resp.Body)
if ra_err != nil { if ra_err != nil {