[READ-ONLY] Mirror of https://github.com/shuuji3/celery-tutorial.
0

Configure Feed

Select the types of activity you want to include in your feed.

celery-tutorial / celeryconfig.py
162 B 9 lines
1broker = 'pyamqp://' 2result_backend='rpc://' 3 4task_serializer = 'json' 5result_serializer = 'json' 6 7task_annotations = { 8 'tasks.add': {'rate_limit': '6/m'}, 9}