fix(celery): don't use msgpack serializer due to problems with certain data types
This commit is contained in:
parent
4142212937
commit
793ec386f8
1 changed files with 2 additions and 2 deletions
|
|
@ -72,9 +72,9 @@ base_celery_config = {
|
|||
'worker_max_tasks_per_child': 100,
|
||||
'worker_hijack_root_logger': False,
|
||||
'worker_prefetch_multiplier': 1,
|
||||
'task_serializer': 'msgpack',
|
||||
'task_serializer': 'json',
|
||||
'accept_content': ['json', 'msgpack'],
|
||||
'result_serializer': 'msgpack',
|
||||
'result_serializer': 'json',
|
||||
'result_accept_content': ['json', 'msgpack'],
|
||||
|
||||
'broker_connection_retry_on_startup': True,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue