From bc01da8e44b9481ee85a3c4dea18f5fddd31ddbb Mon Sep 17 00:00:00 2001 From: Aevann Date: Sun, 5 May 2024 21:46:21 +0300 Subject: [PATCH] increase timeout --- files/helpers/media.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/media.py b/files/helpers/media.py index 2bfede38e..36eece493 100644 --- a/files/helpers/media.py +++ b/files/helpers/media.py @@ -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):