From 03b8ac3dc621aef070d2a097a1d0d14938decbfe Mon Sep 17 00:00:00 2001 From: tcely Date: Fri, 28 Mar 2025 10:00:24 -0400 Subject: [PATCH] Adjust to the much larger `MAX_RUN_TIME` --- tubesync/tubesync/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubesync/tubesync/settings.py b/tubesync/tubesync/settings.py index 602583ab..c44c888f 100644 --- a/tubesync/tubesync/settings.py +++ b/tubesync/tubesync/settings.py @@ -210,7 +210,7 @@ except: if MAX_RUN_TIME < 600: MAX_RUN_TIME = 600 -DOWNLOAD_MEDIA_DELAY = 60 + (MAX_RUN_TIME / 20) +DOWNLOAD_MEDIA_DELAY = 60 + (MAX_RUN_TIME / 50) if RENAME_SOURCES or RENAME_ALL_SOURCES: BACKGROUND_TASK_ASYNC_THREADS += 1