chore(client): fix style errors

pull/492/head
Michelle Noorali 9 years ago
parent 61a9296bb5
commit dbbb4933c9

@ -226,27 +226,28 @@ func (r *Response) HTTPError() error {
defer r.Body.Close() defer r.Body.Close()
body, err := ioutil.ReadAll(r.Body) body, err := ioutil.ReadAll(r.Body)
if err != nil {
return err
}
if contentType == "application/json" { if contentType == "application/json" {
httpErr := httputil.Error{} httpErr := httputil.Error{}
json.Unmarshal(body, &httpErr) if err := json.Unmarshal(body, &httpErr); err != nil {
return err
}
return &HTTPError{ return &HTTPError{
StatusCode: r.StatusCode, StatusCode: r.StatusCode,
Message: httpErr.Msg, Message: httpErr.Msg,
URL: r.Request.URL, URL: r.Request.URL,
} }
} else {
if err != nil {
return err
} }
return &HTTPError{ return &HTTPError{
StatusCode: r.StatusCode, StatusCode: r.StatusCode,
Message: string(body), Message: string(body),
URL: r.Request.URL, URL: r.Request.URL,
} }
}
return nil
} }
// HTTPError is an error caused by an unexpected HTTP status code. // HTTPError is an error caused by an unexpected HTTP status code.

@ -100,7 +100,7 @@ func (c *Client) DeleteDeployment(name string) (*common.Deployment, error) {
return deployment, err return deployment, err
} }
// DescribDeployment describes the kubernetes resources of the supplied deployment // DescribeDeployment describes the kubernetes resources of the supplied deployment
func (c *Client) DescribeDeployment(name string) (*common.Deployment, error) { func (c *Client) DescribeDeployment(name string) (*common.Deployment, error) {
var deployment *common.Deployment var deployment *common.Deployment
//TODO: implement //TODO: implement

Loading…
Cancel
Save