mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-23 05:45:34 +08:00
close http request body
This commit is contained in:
@@ -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()
|
||||
}
|
||||
|
Reference in New Issue
Block a user