Merge pull request #13577 from WeiZhang555/httpClose

bug fix: close http response body no longer in use
This commit is contained in:
Phil Estes 2015-05-29 16:59:17 -04:00
Родитель 8d726709ad 6c49576a86
Коммит 1680c78e63
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -68,6 +68,7 @@ func (c *Client) callWithRetry(serviceMethod string, args interface{}, ret inter
continue
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
remoteErr, err := ioutil.ReadAll(resp.Body)
if err != nil {