(statusCode int)
| 644 | } |
| 645 | |
| 646 | func shouldRetryStatus(statusCode int) bool { |
| 647 | return statusCode == http.StatusTooManyRequests || statusCode >= http.StatusInternalServerError |
| 648 | } |
| 649 | |
| 650 | func (c *Client) prepareRetryResponse(response *http.Response, attempt int) { |
| 651 | closeErr := closeResponseBody( |