outposts: implement .run_wuth_logs() which returns logs, add task monitoring

This commit is contained in:
Jens Langhammer
2020-10-16 11:38:49 +02:00
parent f6b8171624
commit 86cfb10b9b
3 changed files with 28 additions and 13 deletions

View File

@ -3,7 +3,7 @@ from celery.schedules import crontab
CELERY_BEAT_SCHEDULE = {
"outposts_controller": {
"task": "passbook.outposts.tasks.outpost_controller",
"task": "passbook.outposts.tasks.outpost_controller_all",
"schedule": crontab(minute="*/5"),
"options": {"queue": "passbook_scheduled"},
},