Most voted "resilience" questions
2 questions
Sort by count of
-
4
votes1
answer471
viewsHow does Polly’s Fallback work?
I’m trying to understand how it works Fallback by Polly, but I’m not getting the implementation right. From what I understand he executes another action if the first fails, but that’s not what is…
-
0
votes1
answer43
viewsHow can I capture Exception from Circuitbreaker (Polly) and generate a log?
I’m trying to capture through Action onBreak, but apparently it never launches Exception on screen. using Polly; using System; using System.Collections.Generic; namespace CircuitBreakingPolly {…