increase timeout

pull/226/head
Aevann 2024-05-05 21:46:21 +03:00
parent 34e0a817a3
commit bc01da8e44
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ if SITE == 'watchpeopledie.tv':
def rclone_copy(filename):
print(f'attempting to sync {filename}', flush=True)
params = ["rclone", "copy", filename, "no:/videos"]
subprocess.run(params, check=True, timeout=300)
subprocess.run(params, check=True, timeout=3000)
print(f'finished syncing {filename}', flush=True)
def rclone_delete(path):