From df6f6183ecc9e541d07317590db9d3affb7097ab Mon Sep 17 00:00:00 2001 From: Joey Orlando Date: Tue, 29 Aug 2023 12:39:59 +0200 Subject: [PATCH] update celerybeat task paths for recently refactored mobile_app tasks --- engine/settings/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/settings/base.py b/engine/settings/base.py index c2d4f13b..3c1d1694 100644 --- a/engine/settings/base.py +++ b/engine/settings/base.py @@ -505,11 +505,11 @@ CELERY_BEAT_SCHEDULE = { "args": (), }, "conditionally_send_going_oncall_push_notifications_for_all_schedules": { - "task": "apps.mobile_app.tasks.conditionally_send_going_oncall_push_notifications_for_all_schedules", + "task": "apps.mobile_app.tasks.going_oncall_notification.conditionally_send_going_oncall_push_notifications_for_all_schedules", "schedule": 10 * 60, }, "notify_shift_swap_requests": { - "task": "apps.mobile_app.tasks.notify_shift_swap_requests", + "task": "apps.mobile_app.tasks.new_shift_swap_request.notify_shift_swap_requests", "schedule": getenv_integer("NOTIFY_SHIFT_SWAP_REQUESTS_INTERVAL", default=10 * 60), }, "send_shift_swap_request_slack_followups": {