Skip to content

Commit

Permalink
Fix CELERYBEAT_SCHEDULE bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
nttks-dais committed Oct 10, 2014
1 parent f6f1eab commit 45ad807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lms/envs/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@

CELERY_TIMEZONE = ENV_TOKENS.get('CELERY_TIMEZONE', TIME_ZONE)
from celery.schedules import crontab
task_schedule = ENV_TOKENS.get('TASK_SCHEDULE', [])
task_schedule = ENV_TOKENS.get('TASK_SCHEDULE', {})
CELERYBEAT_SCHEDULE = {}
for name, val in task_schedule.items():
celery_task = {
Expand Down

0 comments on commit 45ad807

Please sign in to comment.