How can I add a Polly retry policy to the AspNetCore.HealthChecks.Uris health check?
This health check is part of this repo: https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks
I see that I can use the configureClient and configurePrimaryHttpMessageHandler call backs when using healthCheckBuilder.AddUrlGroup.
However all the examples I see for using Polly require using IClientBuilder.AddPolicyHandler(...), but I can't figure out how to access IHttpClientBuilder when using healthCheckBuilder.AddUrlGroup.