FIX Discard Response Body, to clean up tcp socket
This commit is contained in:
parent
be43899785
commit
fbbf0b0ea6
1 changed files with 8 additions and 0 deletions
|
@ -134,6 +134,14 @@ func MultipartUpload(client *http.Client, url string, path string) (err error) {
|
||||||
if res.StatusCode != http.StatusOK {
|
if res.StatusCode != http.StatusOK {
|
||||||
return fmt.Errorf("bad status: %s", res.Status)
|
return fmt.Errorf("bad status: %s", res.Status)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Discard Response Body, to clean up tcp socket
|
||||||
|
defer res.Body.Close()
|
||||||
|
_, err = io.Copy(ioutil.Discard, res.Body)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue