Skip to content
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1372 from mozilla/fix-task-serializer
Browse files Browse the repository at this point in the history
Use `pickle` as the default serializer.
  • Loading branch information
johngian committed Aug 8, 2017
2 parents a5bfe16 + 2635d49 commit 30bd577
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions remo/settings.py
Expand Up @@ -161,6 +161,7 @@
CELERY_SEND_TASK_ERROR_EMAILS = config('CELERY_SEND_TASK_ERROR_EMAILS', default=True, cast=bool)
CELERY_RESULT_BACKEND = config('CELERY_RESULT_BACKEND', default='redis')
CELERY_TASK_ALWAYS_EAGER = config('CELERY_TASK_ALWAYS_EAGER', default=False, cast=bool)
CELERY_TASK_SERIALIZER = config('CELERY_TASK_SERIALIZER', default='pickle')
REDIS_CONNECT_RETRY = config('REDIS_CONNECT_RETRY',
default=CELERY_RESULT_BACKEND == 'redis', cast=bool)
BROKER_URL = config('CELERY_BROKER_URL', default='amqp://guest:guest@broker:5672//')
Expand Down

0 comments on commit 30bd577

Please sign in to comment.