We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently client does not expose a way to configure wait times for retry, only conditions and retry count are configurable -
resty/request.go
Line 430 in 90b37fd
We need to make wait times configurable as well, default 100ms wait time is too little in my case.
I can provide a pull request for this if the issue is valid
The text was updated successfully, but these errors were encountered:
I am also wondering why retry config functions and Backoff function were made public in https://github.com/go-resty/resty/blob/master/retry.go ?
Backoff
Was the idea to let user wrap client.Execute(...) into an anonymous function and pass it to Backoff?
client.Execute(...)
Sorry, something went wrong.
@bak1an Configurable option is good. Feel free to send PR.
Yes, that was my thought when I made those as public.
Great, will be on it during the week
jeevatkm
Successfully merging a pull request may close this issue.
Currently client does not expose a way to configure wait times for retry, only conditions and retry count are configurable -
resty/request.go
Line 430 in 90b37fd
We need to make wait times configurable as well, default 100ms wait time is too little in my case.
I can provide a pull request for this if the issue is valid
The text was updated successfully, but these errors were encountered: