Skip to content

Commit 98233ef

Browse files
committed
close socket to avoid fd leaks.
1 parent 6eca380 commit 98233ef

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

netplugin/cluster/cluster.go

+2
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ func HTTPPost(url string, req interface{}, resp interface{}) error {
9191
return err
9292
}
9393

94+
defer res.Body.Close()
95+
9496
// Check the response code
9597
if res.StatusCode == http.StatusInternalServerError {
9698
eBody, err := ioutil.ReadAll(res.Body)

0 commit comments

Comments
 (0)