Browse Source

volume: handle repeated writes response

pull/1255/head
Chris Lu 5 years ago
parent
commit
f9b3750ad1
  1. 7
      weed/operation/upload_content.go

7
weed/operation/upload_content.go

@ -188,12 +188,17 @@ 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()
var ret UploadResult
etag := getEtag(resp) etag := getEtag(resp)
if resp.StatusCode == http.StatusNoContent {
ret.ETag = etag
return &ret, nil
}
resp_body, ra_err := ioutil.ReadAll(resp.Body) resp_body, ra_err := ioutil.ReadAll(resp.Body)
if ra_err != nil { if ra_err != nil {
return nil, ra_err return nil, ra_err
} }
var ret UploadResult
unmarshal_err := json.Unmarshal(resp_body, &ret) unmarshal_err := json.Unmarshal(resp_body, &ret)
if unmarshal_err != nil { if unmarshal_err != nil {
glog.V(0).Infoln("failing to read upload response", uploadUrl, string(resp_body)) glog.V(0).Infoln("failing to read upload response", uploadUrl, string(resp_body))

Loading…
Cancel
Save