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
While the multiplier is set to 0.5, it results in delay being always less than 1s, and decreasing at every call. This does not adhere to the exponential backoff strategy.
Failed Attempts
Delay (ms)
1
1*0.5^1*1000 = 500
2
1*0.5^2*1000 = 250
3
1*0.5^3*1000 = 125
The text was updated successfully, but these errors were encountered:
Hi, there is a typo in the README.md file at 11.1. Retry Delay Function.
While the
multiplier
is set to 0.5, it results in delay being always less than 1s, and decreasing at every call. This does not adhere to the exponential backoff strategy.1*0.5^1*1000 = 500
1*0.5^2*1000 = 250
1*0.5^3*1000 = 125
The text was updated successfully, but these errors were encountered: