Work queue size is allowed to grow a llittle.

This commit is contained in:
Samuel Clay 2021-10-06 11:36:17 -04:00
parent 7a44ab24a7
commit 714f31a2b0

View file

@ -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: