From d860680823e0f42d156fc083b4e0035e2af7f08b Mon Sep 17 00:00:00 2001 From: Dean Gardiner Date: Wed, 22 Jan 2014 22:27:19 +1300 Subject: [PATCH] Increased rTorrent load_torrent max waiting time to 10 retries/seconds --- couchpotato/core/downloaders/rtorrent/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/downloaders/rtorrent/main.py b/couchpotato/core/downloaders/rtorrent/main.py index ff801db..2717775 100755 --- a/couchpotato/core/downloaders/rtorrent/main.py +++ b/couchpotato/core/downloaders/rtorrent/main.py @@ -134,7 +134,7 @@ class rTorrent(Downloader): # Send request to rTorrent try: # Send torrent to rTorrent - torrent = self.rt.load_torrent(filedata) + torrent = self.rt.load_torrent(filedata, verify_retries=10) if not torrent: log.error('Unable to find the torrent, did it fail to load?')