-
Notifications
You must be signed in to change notification settings - Fork 751
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
[Http.Resilience] Add support of the HTTP resilience for synchronous HttpClient requests #5333
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
src/Libraries/Microsoft.Extensions.Http.Resilience/Resilience/ResilienceHandler.cs
Outdated
Show resolved
Hide resolved
This comment was marked as resolved.
This comment was marked as resolved.
Added
StandardResilience benchmarksCurrent version (WITHOUT support of synchronous requests)
New version (WITH support of synchronous requests)
Retry benchmarksCurrent version (WITHOUT support of synchronous requests)
New version (WITH support of synchronous requests)
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
The PR adds support of the HTTP resilience for synchronous HttpClient requests. This is achieved by implementing a synchronous method
Send
in theResilienceHandler
.Microsoft Reviewers: Open in CodeFlow
Resolves #5236