Close resp body on plugin call error
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
parent
c8da8b3693
commit
f5003987da
1 changed files with 1 additions and 0 deletions
|
@ -124,6 +124,7 @@ func (c *Client) callWithRetry(serviceMethod string, data io.Reader, retry bool)
|
|||
|
||||
if resp.StatusCode != http.StatusOK {
|
||||
b, err := ioutil.ReadAll(resp.Body)
|
||||
resp.Body.Close()
|
||||
if err != nil {
|
||||
return nil, &statusError{resp.StatusCode, serviceMethod, err.Error()}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue