Test project for example of using Polly Retry
Polly is a .NET library that includes Retry. It allows us to automatically retry failed operations, improving the reliability of our services. This strategy is particularly effective when combined with exponential backoff, as detailed in this Microsoft article.
# Download
$ git clone https://github.com/kevi0x6e/test-polly-retry.git && cd test-polly-retry
# Install libs and dependencies
$ dotnet restore
# Build application
$ dotnet build
# Start
dotnet run api/api.csproj
Run on: localhost
In domain/Infrastructure/LocalExternalService, at line 20, you can pass the URL for testing
This work is licensed under MIT License.