Task that sends out email notifications for failed tasks.
send_email_notifications()
Send a nightly notification email about failed validations.
Source code in gso/schedules/send_email_notifications.py
| @shared_task
@scheduler(CronScheduleConfig(name="Send email notifications", hour="5", minute="0"))
def send_email_notifications() -> None:
"""Send a nightly notification email about failed validations."""
start_process("task_send_email_notifications")
|