mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
cap HttpClient at 90 seconds based on max request logged to AppInsights at ~45secs
This commit is contained in:
parent
3d76e0603e
commit
ff9f75b8aa
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue