Revert testing condition that decreased number of tasks kept

This commit is contained in:
blitzmann 2020-08-27 21:49:55 -04:00
parent 572ac4a17b
commit 4cb82ea9bd
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ STAT_STARTED = 2
STAT_FINISH_SUCCESS = 3
# Only retain this many tasks in dequeued list
TASK_CLEANUP_TRIGGER = 5
TASK_CLEANUP_TRIGGER = 20
QueuedTask = namedtuple('QueuedTask', 'num, user, added, task')