Queues not working. Reverting back to 1 feed at a time. Ugh.

This commit is contained in:
Samuel Clay 2009-09-10 04:16:50 +00:00
parent 8437ef29f1
commit 0b9b778382
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ class Command(BaseCommand):
help='Wait timeout in seconds when connecting to feeds.'),
make_option('-V', '--verbose', action='store_true',
dest='verbose', default=False, help='Verbose output.'),
make_option('-w', '--workerthreads', type='int', default=8,
make_option('-w', '--workerthreads', type='int', default=1,
help='Worker threads that will fetch feeds in parallel.'),
)

View file

@ -173,7 +173,7 @@ class ProcessFeed:
except:
(etype, eobj, etb) = sys.exc_info()
print '[%d] ! -------------------------' % (self.feed.id,)
print traceback.format_exception(etype, eobj, etb)
# print traceback.format_exception(etype, eobj, etb)
traceback.print_exception(etype, eobj, etb)
print '[%d] ! -------------------------' % (self.feed.id,)