Explorar o código

Django example; Use json serializers

Ask Solem %!s(int64=11) %!d(string=hai) anos
pai
achega
f8027b961b
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  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.