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
With a retry policy like:
RetryOptions.newBuilder() .setInitialInterval(Duration.ofSeconds(10)) .setBackoffCoefficient(2.0) .build();
I would expect delays of 10, 20, 40, 80, so attempts (including the first one) run at T0, 10, 30, 70, 150.
Attempts run at T0, 0, 10, 30, 70 - the first retry gets scheduled immediately.
Check out nagl-stripe@b4f764d - it has a test case that would pass if the actual behavior were the expected behavior
This is very much not-urgent =)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
With a retry policy like:
I would expect delays of 10, 20, 40, 80, so attempts (including the first one) run at T0, 10, 30, 70, 150.
Actual Behavior
Attempts run at T0, 0, 10, 30, 70 - the first retry gets scheduled immediately.
Steps to Reproduce the Problem
Check out nagl-stripe@b4f764d - it has a test case that would pass if the actual behavior were the expected behavior
This is very much not-urgent =)
Specifications
The text was updated successfully, but these errors were encountered: