auto-sync: 2026-06-07 09:54:55
Deploy / ci (push) Waiting to run
Deploy / deploy (push) Blocked by required conditions
Deploy / notify-deploy-failure (push) Blocked by required conditions

This commit is contained in:
cfdaily
2026-06-07 09:54:55 +08:00
parent 717e043686
commit 903ff957e2
+6
View File
@@ -698,6 +698,12 @@ class Dispatcher:
)
conn.commit()
logger.info("Mail %s: marked failed (no_reply_found)", task_id)
# Mail 失败通知:通知发件人
try:
from src.daemon.mail_notify import notify_mail_failed
notify_mail_failed(db_path, task_id, "no_reply_found")
except Exception as ne:
logger.warning("Mail %s: failed to send no_reply_found notification: %s", task_id, ne)
return
finally:
conn.close()