change default serializer to json
This commit is contained in:
parent
0e4804e810
commit
17671f1a64
1 changed files with 2 additions and 2 deletions
|
@ -282,6 +282,6 @@ BROKER_URL = get_env_setting('GVAFILE_BROKER_URL')
|
||||||
CELERY_RESULT_BACKEND = 'amqp'
|
CELERY_RESULT_BACKEND = 'amqp'
|
||||||
CELERY_RESULT_PERSISTENT = True
|
CELERY_RESULT_PERSISTENT = True
|
||||||
CELERY_TASK_RESULT_EXPIRES = None
|
CELERY_TASK_RESULT_EXPIRES = None
|
||||||
CELERY_ACCEPT_CONTENT = ['yaml']
|
CELERY_ACCEPT_CONTENT = ['yaml', 'json']
|
||||||
CELERY_RESULT_SERIALIZER = 'yaml'
|
CELERY_RESULT_SERIALIZER = 'json'
|
||||||
########## END CELERY CONFIGURATION
|
########## END CELERY CONFIGURATION
|
||||||
|
|
Loading…
Reference in a new issue