From 64b743870f2bab4fb6006c6824fac1b1b0a65d6b Mon Sep 17 00:00:00 2001 From: simon987 Date: Fri, 5 Apr 2019 20:11:37 -0400 Subject: [PATCH] Increase indexing timeout --- crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crawler.py b/crawler.py index be72d5e..d2e7785 100644 --- a/crawler.py +++ b/crawler.py @@ -136,7 +136,7 @@ class Crawler: while True: try: - doc = out_q.get(timeout=120) + doc = out_q.get(timeout=600) if doc is None: break except Empty: