read full request.Body to reuse http/1 connections

This commit is contained in:
Matthias Dötsch 2022-01-27 15:11:36 +01:00
parent 51217eae02
commit 9c00479ef6

View File

@ -697,7 +697,7 @@ func NewBitbucketAPIResponse(r *http.Response) (*APIResponse, error) {
if decoder.More() { if decoder.More() {
// there's more data in the stream, so discard whatever is left // there's more data in the stream, so discard whatever is left
io.Copy(ioutil.Discard, r.Body) _, _ = io.Copy(ioutil.Discard, r.Body)
} }
return response, err return response, err