Add beat task to queue

This commit is contained in:
leigh-mil 2020-02-12 12:05:16 -05:00
parent 6ef3265cb5
commit 4dc5f2aa91

View File

@ -31,6 +31,10 @@ def update_celery(celery, app):
"task": "atst.jobs.send_task_order_files", "task": "atst.jobs.send_task_order_files",
"schedule": 60, "schedule": 60,
}, },
"beat-create_billing_instruction": {
"task": "atst.jobs.create_billing_instruction",
"schedule": 60,
},
} }
class ContextTask(celery.Task): class ContextTask(celery.Task):