Skip to content

Commit c82ffdb

Browse files
committed
fix: [crawler] increase timeout QUEUED captures
1 parent df161cf commit c82ffdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/crawlers/Crawler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def get_message(self):
180180
capture.update(status)
181181
elif status == crawlers.CaptureStatus.QUEUED:
182182
capture_start = capture.get_start_time(r_str=False)
183-
if int(time.time()) - capture_start > 600: # TODO ADD in new crawler config
183+
if int(time.time()) - capture_start > 3600: # TODO ADD in new crawler config
184184
task = capture.get_task()
185185
task.reset()
186186
capture.delete()

0 commit comments

Comments
 (0)