This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-09-02 22:04:12 +00:00
|
|
|
"""Outposts Settings"""
|
2020-10-05 21:11:44 +00:00
|
|
|
from celery.schedules import crontab
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2020-10-05 21:11:44 +00:00
|
|
|
CELERY_BEAT_SCHEDULE = {
|
2020-10-14 08:44:17 +00:00
|
|
|
"outposts_controller": {
|
2020-10-16 09:38:49 +00:00
|
|
|
"task": "passbook.outposts.tasks.outpost_controller_all",
|
2020-10-14 08:44:17 +00:00
|
|
|
"schedule": crontab(minute="*/5"),
|
2020-10-05 21:11:44 +00:00
|
|
|
"options": {"queue": "passbook_scheduled"},
|
2020-10-14 08:44:17 +00:00
|
|
|
},
|
2020-11-08 20:31:27 +00:00
|
|
|
"outposts_service_connection_check": {
|
|
|
|
"task": "passbook.outposts.tasks.outpost_service_connection_monitor",
|
|
|
|
"schedule": crontab(minute=0, hour="*"),
|
|
|
|
"options": {"queue": "passbook_scheduled"},
|
|
|
|
},
|
2020-10-05 21:11:44 +00:00
|
|
|
}
|