From 5e230943c4b21d353fc9e525782a34a096be3524 Mon Sep 17 00:00:00 2001 From: Leo Hemsted Date: Mon, 25 Sep 2017 18:07:57 +0100 Subject: [PATCH] remove trailing comma from CELERY_ENABLE_UTC, a beat config option To run beat after this, you must remove the celerybeat-schedule file from your notifications-api project root --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index 2e1a272ba..ef6b7e745 100644 --- a/app/config.py +++ b/app/config.py @@ -137,7 +137,7 @@ class Config(object): 'visibility_timeout': 310, 'queue_name_prefix': NOTIFICATION_QUEUE_PREFIX } - CELERY_ENABLE_UTC = True, + CELERY_ENABLE_UTC = True CELERY_TIMEZONE = 'Europe/London' CELERY_ACCEPT_CONTENT = ['json'] CELERY_TASK_SERIALIZER = 'json'