Add beat config for send-scheduled-notifications task to run every 15 minutes.

Added the missing commit to the update pending
This commit is contained in:
Rebecca Law
2017-05-22 16:30:45 +01:00
parent 9bfba52f53
commit 76d0783c63
3 changed files with 10 additions and 4 deletions

View File

@@ -109,6 +109,11 @@ class Config(object):
'schedule': crontab(minute=1),
'options': {'queue': 'periodic'}
},
'send-scheduled-notifications': {
'task': 'send-scheduled-notifications',
'schedule': crontab(minute='*/15'),
'options': {'queue': 'periodic'}
},
'delete-verify-codes': {
'task': 'delete-verify-codes',
'schedule': timedelta(minutes=63),