From c82ffdb815b5aa514e887885b436eb59233a3ae5 Mon Sep 17 00:00:00 2001 From: terrtia Date: Thu, 9 Jan 2025 14:07:56 +0100 Subject: [PATCH] fix: [crawler] increase timeout QUEUED captures --- bin/crawlers/Crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/crawlers/Crawler.py b/bin/crawlers/Crawler.py index e7e780ed..5a9318b3 100755 --- a/bin/crawlers/Crawler.py +++ b/bin/crawlers/Crawler.py @@ -180,7 +180,7 @@ class Crawler(AbstractModule): capture.update(status) elif status == crawlers.CaptureStatus.QUEUED: capture_start = capture.get_start_time(r_str=False) - if int(time.time()) - capture_start > 600: # TODO ADD in new crawler config + if int(time.time()) - capture_start > 3600: # TODO ADD in new crawler config task = capture.get_task() task.reset() capture.delete()