fix schedule

pull/94/head
eric 2021-09-27 13:49:53 -04:00
parent ce51e6a2fb
commit 4b61dc566f
1 changed files with 4 additions and 4 deletions

View File

@ -373,19 +373,19 @@ SEND_TEST_EMAIL_JOB = {
UPDATE_ACTIVE_CAMPAIGN_STATUSES = {
"task": "regluit.core.tasks.update_active_campaign_status",
"schedule": crontab(hour=0, minute=1),
"schedule": crontab(day_of_month='*', hour=0, minute=1),
"args": ()
}
EBOOK_NOTIFICATIONS_JOB = {
"task": "regluit.core.tasks.report_new_ebooks",
"schedule": crontab(hour=0, minute=30),
"schedule": crontab(day_of_month='*', hour=0, minute=30),
"args": ()
}
NOTIFY_ENDING_SOON_JOB = {
"task": "regluit.core.tasks.notify_ending_soon",
"schedule": crontab(hour=1, minute=0),
"schedule": crontab(day_of_month='*', hour=1, minute=0),
"args": ()
}
@ -409,7 +409,7 @@ NOTIFY_EXPIRING_ACCOUNTS = {
NOTIFY_UNCLAIMED_GIFTS = {
"task": "regluit.core.tasks.notify_unclaimed_gifts",
"schedule": crontab(hour=2, minute=15),
"schedule": crontab(day_of_month='*', hour=2, minute=15),
"args": ()
}