mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-04-05 20:52:50 +08: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 New Issue
Block a user