Top "Polly" questions

Polly is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner.

Polly policy to log exception and rethrow

I consider to use Polly to create policy to log exception and rethrow. I didn't find an existing method that …

c# exception polly
Polly framework CircuitBreakerAsync does not retry if exception occur

I am using Polly framework for transient fault handling. For synchronous operations Polly circuit breaker policy works fine but when …

c# async-await circuit-breaker polly
Using Polly to retry after HttpStatusCode.Unauthorized

I'm making calls to an external API and want to deal with the event that a call returns an Unauthorized …

c# asp.net-mvc polly
Exception User-Unhandled reported in VS Debugger when using Polly

I'm using Polly to catch an exception while calling a Pittney Bowes Geocoder service. I'm using a g1client library …

c# networking geocoding unhandled-exception polly
Polly timeout policy clarification

I am trying to get the timout Policy to work correctly. I have the following requirement while integrating an api. …

c# polly transient-failure