File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,15 +28,15 @@ Here is an example of algorithm that implements the recommended retry strategy:
2828
29295 . Upon retryable failure, wait 8 + ` jitter ` seconds before retrying.
3030
31- 6 . And so on, with a delay of min(2<sup >n</sup > + ` jitter ` , ` max_backoff ` )
31+ 6 . And so on, with a delay of min(2<sup >n</sup > + ` jitter ` , ` max_delay ` )
3232 seconds at each iteration.
3333
34347 . After ` deadline ` seconds, stop retrying the request.
3535
3636The ` jitter ` value must be picked randomly at each iteration. In this example,
3737it could be a fractional value between 0 and 1 second.
3838
39- The ` max_backoff ` value defines the maximum time to wait between retries. You
39+ The ` max_delay ` value defines the maximum time to wait between retries. You
4040should pick the highest value your use case can support. If you have no specific
4141latency requirements, 2<sup >6</sup > (64) seconds should be reasonable in most
4242situations.
You can’t perform that action at this time.
0 commit comments