Browse Source

Increased rTorrent load_torrent max waiting time to 10 retries/seconds

pull/2756/head
Dean Gardiner 11 years ago
parent
commit
d860680823
  1. 2
      couchpotato/core/downloaders/rtorrent/main.py

2
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?')

Loading…
Cancel
Save