api: Don't treat 429 as error (#2850)
* api: Don't treat 429 as error * Added parenthesis
This commit is contained in:
parent
3309496916
commit
2d61087b99
|
@ -25,8 +25,9 @@ func (r *Response) DecodeJSON(out interface{}) error {
|
|||
// this will fully consume the response body, but will not close it. The
|
||||
// body must still be closed manually.
|
||||
func (r *Response) Error() error {
|
||||
// 200 to 399 are okay status codes
|
||||
if r.StatusCode >= 200 && r.StatusCode < 400 {
|
||||
// 200 to 399 are okay status codes. 429 is the code for health status of
|
||||
// standby nodes.
|
||||
if (r.StatusCode >= 200 && r.StatusCode < 400) || r.StatusCode == 429 {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue