From 1879cb76ae18390864dc382ac589c76c485d56aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Mon, 27 Feb 2017 16:15:13 +0100 Subject: [PATCH] Fix celery settings --- settings/celery.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings/celery.py b/settings/celery.py index 5d876a18..8001a19c 100644 --- a/settings/celery.py +++ b/settings/celery.py @@ -21,6 +21,8 @@ from kombu import Exchange, Queue BROKER_URL = 'amqp://guest:guest@localhost:5672//' CELERY_RESULT_BACKEND = 'redis://localhost:6379/0' +CELERY_ACCEPT_CONTENT = ['pickle',] # Values are 'pickle', 'json', 'msgpack' and 'yaml' + CELERY_TIMEZONE = 'Europe/Madrid' CELERY_ENABLE_UTC = True