From 0d8a3b032daf1c8998f514cca8bc8157bf7011a9 Mon Sep 17 00:00:00 2001 From: Blondel MONDESIR Date: Tue, 23 Jul 2024 11:06:15 -0400 Subject: [PATCH] Increase timeout to 120s Makes download more reliable by allocating enough time for media check (post-processing) --- cps/tasks/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/tasks/download.py b/cps/tasks/download.py index 5c3e08eddf..16ef4deb2a 100644 --- a/cps/tasks/download.py +++ b/cps/tasks/download.py @@ -54,7 +54,7 @@ def run(self, worker_thread): complete_progress_cycle = 0 last_progress_time = datetime.now() - fragment_stuck_timeout = 60 # seconds + fragment_stuck_timeout = 120 # seconds self.message = f"Downloading {self.media_url_link}..." if self.live_status == "was_live":