fix up the subscribe/update stuff

This commit is contained in:
Kyle Mahan 2015-01-27 22:14:30 -08:00
parent 8a45968175
commit 73cabc2050
10 changed files with 118 additions and 74 deletions

View file

@ -8,7 +8,7 @@ CELERY_ACCEPT_CONTENT = ['json']
CELERYBEAT_SCHEDULE = {
'tick-every-5-minutes': {
'task': 'woodwind.tasks.tick',
'schedule': datetime.timedelta(seconds=30),
'schedule': datetime.timedelta(minutes=5),
}
}
# recommended to disable if not using -- introduces a lot of complexity