mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Queues not working. Reverting back to 1 feed at a time. Ugh.
This commit is contained in:
parent
8437ef29f1
commit
0b9b778382
2 changed files with 2 additions and 2 deletions
|
@ -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.'),
|
||||
)
|
||||
|
||||
|
|
|
@ -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,)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue