You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for {
resp, body, errs = s.getResponseBytes()
if errs != nil {
return nil, nil, errs
}
if s.isRetryableRequest(resp) {
resp.Header.Set("Retry-Count", strconv.Itoa(s.Retryable.Attempt))
break
}
}
s.getResponseBytes() will be executing the http request. Any error set in s.Errors or errs is not nil isRetryableRequest() check is not performed.
Any retry set to the SuperAgent object is not considered.
The text was updated successfully, but these errors were encountered:
https://github.com/parnurzeal/gorequest/blob/develop/gorequest.go#L1102
s.getResponseBytes() will be executing the http request. Any error set in s.Errors or errs is not nil
isRetryableRequest()
check is not performed.Any retry set to the SuperAgent object is not considered.
The text was updated successfully, but these errors were encountered: