From 4e728c3a021aca566425d1c63ddd4d03cb47ce18 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Wed, 30 Dec 2015 22:50:17 +0100 Subject: [PATCH] Increased timeout for Deluge to prevent timeout errors when posting large torrent files. --- src/NzbDrone.Core/Download/Clients/Deluge/DelugeProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/Deluge/DelugeProxy.cs b/src/NzbDrone.Core/Download/Clients/Deluge/DelugeProxy.cs index a85bfecd2..1bf315c1c 100644 --- a/src/NzbDrone.Core/Download/Clients/Deluge/DelugeProxy.cs +++ b/src/NzbDrone.Core/Download/Clients/Deluge/DelugeProxy.cs @@ -243,7 +243,7 @@ private IRestClient BuildClient(DelugeSettings settings) } var restClient = RestClientFactory.BuildClient(url); - restClient.Timeout = 4000; + restClient.Timeout = 15000; if (_authPassword != settings.Password || _authCookieContainer == null) {