fix cronitor

This commit is contained in:
Kenneth Kehl
2025-07-10 09:43:32 -07:00
parent c0a97985d7
commit 2bfcd4a54d
2 changed files with 12 additions and 7 deletions

View File

@@ -316,6 +316,16 @@ class Config(object):
"schedule": crontab(hour=8, minute=0),
"options": {"queue": QueueNames.PERIODIC},
},
"delete-sms-notifications": {
"task": "delete-sms-notifications",
"schedule": crontab(hour=8, minute=46),
"options": {"queue": QueueNames.PERIODIC},
},
"delete-email-notifications": {
"task": "delete-sms-notifications",
"schedule": crontab(hour=8, minute=17),
"options": {"queue": QueueNames.PERIODIC},
},
"check-for-services-with-high-failure-rates-or-sending-to-tv-numbers": {
"task": "check-for-services-with-high-failure-rates-or-sending-to-tv-numbers",
"schedule": crontab(day_of_week="mon-fri", hour=14, minute=30),