Skip to content

Instantly share code, notes, and snippets.

@skarllot
Created October 24, 2024 21:04
Show Gist options
  • Save skarllot/88c4c8be1910de8cb9a38aac844aa28a to your computer and use it in GitHub Desktop.
Save skarllot/88c4c8be1910de8cb9a38aac844aa28a to your computer and use it in GitHub Desktop.
Polly retry configuration for exponential backoff
options.RetryCount, retryAttempt => TimeSpan.FromMilliseconds(options.RetryDelayMilliseconds * Math.Pow(2, retryAttempt-1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment