Use pickle for result serialization

This commit is contained in:
Raphael Michel
2016-03-21 19:06:34 +01:00
parent 9ceb325e3e
commit 3166b7fff2

View File

@@ -374,7 +374,9 @@ LOGGING = {
}
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
# We need to use pickle for now, because kombu/celery are unable to serialize
# exceptions (that we also use as return values) into any other format.
CELERY_RESULT_SERIALIZER = 'pickle'
BOOTSTRAP3 = {
'success_css_class': ''