Improved error handling
parent
196a6f54f2
commit
45fd265264
8
lib.go
8
lib.go
|
@ -4,10 +4,10 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
"fmt"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Cli struct {
|
type Cli struct {
|
||||||
|
@ -57,7 +57,11 @@ func (c *Cli) Do(method string, strurl string, body []byte) (*http.Response, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
res, err := c.cli.Do(req)
|
res, err := c.cli.Do(req)
|
||||||
if err==nil && res.StatusCode >=400{
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer res.Body.Close()
|
||||||
|
if res.StatusCode >= 400 {
|
||||||
return nil, errors.New(fmt.Sprintf("Http return code - %d: %s", res.StatusCode, res.Status))
|
return nil, errors.New(fmt.Sprintf("Http return code - %d: %s", res.StatusCode, res.Status))
|
||||||
}
|
}
|
||||||
return res, err
|
return res, err
|
||||||
|
|
Loading…
Reference in New Issue