I'm encountering an issue with my Refit and Polly configuration for handling HTTP requests and retries. But it not working. Please assist me for this code Here's the relevant code:
services.AddRefitClient<IHttpClient>()
.ConfigureHttpClient(c => c.BaseAddress = new Uri(https://api.powerbi.com))
.AddTransientHttpErrorPolicy(p => p.WaitAndRetryAsync(int.Parse(2), _ => TimeSpan.FromMilliseconds(int.Parse(5000)), (result, timeSpan, retryCount, context) =>
{
Log.Warning($"Request failed: {result.Exception.Message}. Wait {timeSpan.TotalSeconds}s before retry. Retry attempt {retryCount}.");
}));
I expect that If I get 404 not found then it will retry a second time
AddTransientHttpErrorPolicy
will not trigger for 404. It is defined to handleHttpRequestException
404 (Not Found) usually not considered as transient failure. So, retrying on this status code might not change the outcome. Since the question do not include too much contextual information my best guess is that you want to fetch a resource which will eventually become available.
In that case you can define your policy like this