fix: better name for the retry job

This commit is contained in:
sokumon 2025-07-14 18:30:37 +05:30
parent 2bbf72061c
commit 74b4acacd4
2 changed files with 2 additions and 2 deletions

View file

@ -180,7 +180,7 @@ def get_queue():
)
def mark_sending_emails_as_not_sent():
def retry_sending_emails():
emails_in_sending = frappe.get_all(
"Email Queue", filters={"status": "Sending"}, fields=["name", "modified"]
)

View file

@ -217,7 +217,7 @@ scheduler_events = {
},
"all": [
"frappe.email.queue.flush",
"frappe.email.queue.mark_sending_emails_as_not_sent",
"frappe.email.queue.retry_sending_emails",
"frappe.monitor.flush",
"frappe.integrations.doctype.google_calendar.google_calendar.sync",
],