Skip to content

Commit

Permalink
Corrects an import error
Browse files Browse the repository at this point in the history
  • Loading branch information
casusbelli committed Feb 20, 2019
1 parent 2a784af commit 40e7d97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func (client QuobyteClient) sendRequest(method string, request interface{}, resp
if resp.StatusCode == 401 {
return errors.New("Unable to authenticate with Quobyte API service")
}
body, err := io.ioutil.ReadAll(resp.Body)
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return (err)
}
Expand Down

0 comments on commit 40e7d97

Please sign in to comment.