Remove redundant http status code in error

This commit is contained in:
Steven Polley 2018-07-28 09:58:04 -06:00
parent 101d8061b3
commit bf30760baf
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ func (cw *Site) BuildURL(restAction string) (*url.URL, error) {
//TBD: Needs to accept 201 and 204 (returned for Create and Delete operations)
func getHTTPResponseBody(resp *http.Response) ([]byte, error) {
if (resp.StatusCode != http.StatusOK) && (resp.StatusCode != http.StatusCreated) && (resp.StatusCode != http.StatusNoContent) {
return nil, fmt.Errorf("cw api returned unexpected http status %d - %s", resp.StatusCode, resp.Status)
return nil, fmt.Errorf("cw api returned unexpected http status - %s", resp.Status)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)