Task that sends out email notifications for failed tasks.
send_email_notifications()
Run this task every night at 2:30 AM.
Source code in gso/schedules/send_email_notifications.py
| @shared_task
@scheduler(CronScheduleConfig(name="Send email notifications", hour="4", minute="0"))
def send_email_notifications() -> None:
"""Run this task every night at 2:30 AM."""
start_process("task_send_email_notifications")
|