Skip to content
New issue

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

Migration guide from v7 to v8 #1598

Merged
merged 20 commits into from
Sep 19, 2023
Prev Previous commit
Next Next commit
Cleanup
  • Loading branch information
martintmk committed Sep 19, 2023
commit 0481dd538d35083ec23b7f6e57ed6728e41f50c7
3 changes: 3 additions & 0 deletions docs/migration-v8.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,9 @@ new ResiliencePipelineBuilder().AddRetry(new RetryStrategyOptions
```
<!-- endSnippet -->

- To disable waiting between retries, set the `Delay` property to `TimeSpan.Zero`.
- To retry forever, set the `MaxRetryAttempts` property to `int.MaxValue`.

### Retry and wait in v7

<!-- snippet: migration-retry-wait-v7 -->
Expand Down
Loading