From 93e55b7575df2e0442e0c38eb235b653ef77d8f9 Mon Sep 17 00:00:00 2001 From: Mitchell Cash Date: Sun, 12 Feb 2017 18:07:38 +1000 Subject: [PATCH] Increase timeout when waiting for rTorrent to finish adding torrent (#721) Increase timeout when waiting for rTorrent to finish adding torrent --- src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs index cc9b80aa5..b04d80e81 100644 --- a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs @@ -75,8 +75,8 @@ namespace NzbDrone.Core.Download.Clients.RTorrent { _proxy.AddTorrentFromFile(filename, fileContent, Settings); - var tries = 2; - var retryDelay = 100; + var tries = 5; + var retryDelay = 200; if (WaitForTorrent(hash, tries, retryDelay)) { _proxy.SetTorrentLabel(hash, Settings.MovieCategory, Settings);