Merge pull request #7107 from wzshiming/fix/close-http-body

Fix missing closed HTTP Body
This commit is contained in:
Phil Estes
2022-06-28 08:54:02 -04:00
committed by GitHub

View File

@@ -182,6 +182,7 @@ func httpGetRequest(client *http.Client, request string) (io.ReadCloser, error)
return nil, err
}
if resp.StatusCode != 200 {
resp.Body.Close()
return nil, fmt.Errorf("http get failed with status: %s", resp.Status)
}
return resp.Body, nil