Adding Polly policies
Polly is a great library allowing us to add policies such as retry, circuit breaker, timeout, etc. to our HttpClient. These are the policies I used in my project and how to add them to HttpClient RetryPolicy This policy is for GET requests. We only want to retry if HTTP status code is request timeout … [Read more…]