diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-19 17:20:47 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-19 17:20:47 -0400 |
| commit | b2b85d20a53216b48115ccbb9e3ff3d9b2d80f91 (patch) | |
| tree | 8cdc30d3292bddacce21ea533cded54fb4d72ee6 /MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs | |
| parent | 40a2af83c9e1b90cc6aa503ed5b77642e6d12a3b (diff) | |
slightly reduce simultaneous requests
Diffstat (limited to 'MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs index 7ea2d0adf..0418bcfc2 100644 --- a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs +++ b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs @@ -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); } |
