Following from Set a default Polly policy with Flurl
How do I use Polly with Flurl without the factory? This only calls it once
string s = await Policy
.Handle<HttpRequestException> ()
.OrResult <HttpResponseMessage> (r => !r.IsSuccessStatusCode)
.RetryAsync (5)
.ExecuteAsync (() => { Console.WriteLine ("Retry"); return "http://127.0.0:7071/".GetAsync (); })
.ReceiveString ()
.ConfigureAwait (false);