slightly reduce simultaneous requests

This commit is contained in:
Luke Pulverenti
2013-05-19 17:20:47 -04:00
parent 40a2af83c9
commit b2b85d20a5
9 changed files with 50 additions and 50 deletions

View File

@@ -97,7 +97,7 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
};
client = new HttpClient(handler);
client.Timeout = TimeSpan.FromSeconds(15);
client.Timeout = TimeSpan.FromSeconds(30);
_httpClients.TryAdd(host, client);
}