Increase max backoff for do_tasks.

master
voussoir 2021-03-31 19:41:53 -07:00
parent 04b53dae8a
commit 03d21d99c3
No known key found for this signature in database
GPG Key ID: 5F7554F8C26DACCB
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import time
from voussoirkit import backoff
bo = backoff.Linear(m=1, b=5, max=300)
bo = backoff.Linear(m=1, b=5, max=1800)
def get_task_files():
return [f for f in os.listdir() if (os.path.isfile(f) and f.endswith('.task'))]