mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
close http request body
This commit is contained in:
parent
0e99531dbf
commit
141ce67c09
|
@ -66,6 +66,7 @@ func (fs *FilerServer) PostHandler(w http.ResponseWriter, r *http.Request) {
|
|||
)
|
||||
|
||||
fs.autoChunk(ctx, w, r, so)
|
||||
util.CloseRequest(r)
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -374,3 +374,8 @@ func CloseResponse(resp *http.Response) {
|
|||
io.Copy(ioutil.Discard, resp.Body)
|
||||
resp.Body.Close()
|
||||
}
|
||||
|
||||
func CloseRequest(req *http.Request) {
|
||||
io.Copy(ioutil.Discard, req.Body)
|
||||
req.Body.Close()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue