mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Work queue size is allowed to grow a llittle.
This commit is contained in:
parent
7a44ab24a7
commit
714f31a2b0
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ def main():
|
|||
except Exception as e:
|
||||
failed = e
|
||||
|
||||
if work_queue_size > 100 and work_queue_size > (redis_work_queue + QUEUE_DROP_AMOUNT):
|
||||
if work_queue_size > 300 and work_queue_size > (redis_work_queue + QUEUE_DROP_AMOUNT):
|
||||
failed = True
|
||||
|
||||
if failed:
|
||||
|
|
Loading…
Add table
Reference in a new issue