Increase max backoff for do_tasks.
This commit is contained in:
parent
04b53dae8a
commit
03d21d99c3
1 changed files with 1 additions and 1 deletions
|
@ -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'))]
|
||||
|
|
Loading…
Reference in a new issue