change default serializer to json

This commit is contained in:
Jan Dittberner 2014-12-26 12:42:43 +01:00
parent 0e4804e810
commit 17671f1a64

View file

@ -282,6 +282,6 @@ BROKER_URL = get_env_setting('GVAFILE_BROKER_URL')
CELERY_RESULT_BACKEND = 'amqp'
CELERY_RESULT_PERSISTENT = True
CELERY_TASK_RESULT_EXPIRES = None
CELERY_ACCEPT_CONTENT = ['yaml']
CELERY_RESULT_SERIALIZER = 'yaml'
CELERY_ACCEPT_CONTENT = ['yaml', 'json']
CELERY_RESULT_SERIALIZER = 'json'
########## END CELERY CONFIGURATION