Merge pull request #7107 from wzshiming/fix/close-http-body
Fix missing closed HTTP Body
This commit is contained in:
commit
36bd4a5178
@ -182,6 +182,7 @@ func httpGetRequest(client *http.Client, request string) (io.ReadCloser, error)
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
if resp.StatusCode != 200 {
|
if resp.StatusCode != 200 {
|
||||||
|
resp.Body.Close()
|
||||||
return nil, fmt.Errorf("http get failed with status: %s", resp.Status)
|
return nil, fmt.Errorf("http get failed with status: %s", resp.Status)
|
||||||
}
|
}
|
||||||
return resp.Body, nil
|
return resp.Body, nil
|
||||||
|
Loading…
Reference in New Issue
Block a user