From 736988223b1b42de2241e2484d984743c3047a5b Mon Sep 17 00:00:00 2001 From: nikita Date: Thu, 8 Nov 2018 17:49:52 +0300 Subject: [PATCH] send_certificates on --- project/settings.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/project/settings.py b/project/settings.py index 84cae46b..3bd90b7d 100644 --- a/project/settings.py +++ b/project/settings.py @@ -250,11 +250,11 @@ CELERY_BEAT_SCHEDULE = { 'schedule': timedelta(hours=1), 'args': (), }, - #'send_certificates': { - # 'task': 'apps.notification.tasks.send_certificates', - # 'schedule': crontab(hour=19), - # 'args': (), - #}, + 'send_certificates': { + 'task': 'apps.notification.tasks.send_certificates', + 'schedule': crontab(hour=19), + 'args': (), + }, 'sendgrid_update_recipients': { 'task': 'apps.notification.tasks.sendgrid_update_recipients', 'schedule': crontab(minute=0, hour=3),