increase timeout to 300

master
Aevann 2024-05-03 07:44:54 +03:00
parent 8d89ec96f5
commit 496be6e5ed
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=30)
subprocess.run(params, check=True, timeout=300)
print(f'finished syncing {filename}', flush=True)
def rclone_delete(path):