From aeeca2a0505089eeccacee039adf04c3103dcf4e Mon Sep 17 00:00:00 2001 From: Sam Ruby Date: Mon, 2 Apr 2007 08:47:15 -0400 Subject: [PATCH] Fix infinite loop on errors when multithreading. Patch was supplied by Lawrence Oluyede --- planet/spider.py | 1 - 1 file changed, 1 deletion(-) diff --git a/planet/spider.py b/planet/spider.py index e88d203..11fe94a 100644 --- a/planet/spider.py +++ b/planet/spider.py @@ -323,7 +323,6 @@ def httpThread(thread_index, input_queue, output_queue, log): for line in (traceback.format_exception_only(type, value) + traceback.format_tb(tb)): log.error(line.rstrip()) - continue output_queue.put(block=True, item=(uri, feed_info, feed)) uri, feed_info = input_queue.get(block=True)