mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -07:00
parent
1f829db4a3
commit
e7cbc250b8
1 changed files with 2 additions and 2 deletions
|
@ -163,7 +163,7 @@ class autoProcessTV:
|
||||||
r = None
|
r = None
|
||||||
r = requests.get(url, auth=(username, password), params=fork_params, stream=True, verify=False)
|
r = requests.get(url, auth=(username, password), params=fork_params, stream=True, verify=False)
|
||||||
elif section == "NzbDrone":
|
elif section == "NzbDrone":
|
||||||
start_numMissing = numMissing(url1, params, headers) # get current number of outstanding eppisodes.
|
start_numMissing = self.numMissing(url1, params, headers) # get current number of outstanding eppisodes.
|
||||||
r = None
|
r = None
|
||||||
r = requests.post(url, data=data, headers=headers, stream=True, verify=False)
|
r = requests.post(url, data=data, headers=headers, stream=True, verify=False)
|
||||||
except requests.ConnectionError:
|
except requests.ConnectionError:
|
||||||
|
@ -195,7 +195,7 @@ class autoProcessTV:
|
||||||
total_processed = 0
|
total_processed = 0
|
||||||
timeout = time.time() + 60 * wait_for
|
timeout = time.time() + 60 * wait_for
|
||||||
while (time.time() < timeout): # only wait 2 (default) minutes, then return.
|
while (time.time() < timeout): # only wait 2 (default) minutes, then return.
|
||||||
current_numMissing = numMissing(url1, params, headers)
|
current_numMissing = self.numMissing(url1, params, headers)
|
||||||
if current_numMissing < start_numMissing:
|
if current_numMissing < start_numMissing:
|
||||||
num_processed = start_numMissing - current_numMissing
|
num_processed = start_numMissing - current_numMissing
|
||||||
if total_processed == num_processed: # we have gone another cycle without any more episodes being completed.
|
if total_processed == num_processed: # we have gone another cycle without any more episodes being completed.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue