diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-03-28 14:47:58 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-03-28 14:47:58 -0400 |
| commit | 680200864f2f713c718a65d0927937d5fe5230b2 (patch) | |
| tree | bc6486920ddba31adeca0d37ca218bcb181459d4 /MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs | |
| parent | d2401579da5e9d09431ba478a6926e46a8b8b9ed (diff) | |
try to avoid timeouts by increasing our default, and lower movie db concurrency
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 cba268813..0e9696648 100644 --- a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs +++ b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs @@ -83,7 +83,7 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager client = new HttpClient(handler); client.DefaultRequestHeaders.Add("Accept", "application/json,image/*"); - client.Timeout = TimeSpan.FromSeconds(15); + client.Timeout = TimeSpan.FromSeconds(30); _httpClients.TryAdd(host, client); } |
