cap HttpClient at 90 seconds based on max request logged to AppInsights at ~45secs

This commit is contained in:
Collin M. Barrett 2019-07-03 19:40:20 -05:00
parent 3d76e0603e
commit ff9f75b8aa

View file

@ -15,7 +15,7 @@ public class AgentHttpClient : IAgentHttpClient
{
public AgentHttpClient(HttpClient client)
{
client.Timeout = TimeSpan.FromMinutes(10);
client.Timeout = TimeSpan.FromSeconds(90);
var header = new ProductHeaderValue("FilterLists.Agent");
var userAgent = new ProductInfoHeaderValue(header);