DEV Community

Discussion on: Adding Auto-Retries to a C# API Client

Collapse
 
meebey profile image
Mirco Bauer

There is a small bug in the last line in last code block:

return new AggregateException(...)

Should be:

throw new AggregateException(...)