1234567891011121314 |
- import os
- import sys
- sys.path.insert(0, os.getcwd())
- # ### Start worker with -P eventlet
- # Never use the CELERYD_POOL setting as that will patch
- # the worker too late.
- BROKER_URL = 'amqp://guest:guest@localhost:5672//'
- CELERY_DISABLE_RATE_LIMITS = True
- CELERY_RESULT_BACKEND = 'amqp'
- CELERY_TASK_RESULT_EXPIRES = 30 * 60
- CELERY_IMPORTS = ('tasks', 'webcrawler')
|