From 0255eb3aca0a2ab97086c8be1e3cc3bbe7774256 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Tue, 7 Feb 2017 22:36:47 +0100 Subject: [PATCH] Fixed: Increased timeout when waiting for rtorrent to finish adding torrent. fixes #1665 --- 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 bfbc62cbe..d2f30fd9a 100644 --- a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrent.cs @@ -72,8 +72,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.TvCategory, Settings);