change default serializer to json

This commit is contained in:
Jan Dittberner 2014-12-26 12:40:49 +01:00
parent 287756f160
commit 9572c2cec5

View file

@ -290,6 +290,6 @@ BROKER_URL = get_env_setting('GVALDAP_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