change default serializer to json
This commit is contained in:
parent
287756f160
commit
9572c2cec5
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue