Ver Fonte

Django example; Use json serializers

Ask Solem há 11 anos atrás
pai
commit
f8027b961b
1 ficheiros alterados com 2 adições e 0 exclusões
  1. 2 0
      examples/django/proj/settings.py

+ 2 - 0
examples/django/proj/settings.py

@@ -11,6 +11,8 @@ BROKER_URL = 'amqp://guest:guest@localhost//'
 #: Only add pickle to this list if your broker is secured
 #: from unwanted access (see userguide/security.html)
 CELERY_ACCEPT_CONTENT = ['json']
+CELERY_TASK_SERIALIZER = 'json'
+CELERY_RESULT_SERIALIZER = 'json'
 
 # Django settings for proj project.