
This reverts commit 35472d1f153fb20393c6d6fb6dffc1b83db5355b, reversing changes made to 5a929be775bb4513560b87f5da314e12421df665. Change-Id: Ie5f2f92473489bb5be981b97e17597e91ff1cbf9
10 lines
286 B
Plaintext
10 lines
286 B
Plaintext
## Celery related setting: this is the default setting once we install RabbitMQ
|
|
|
|
CELERY_RESULT_BACKEND ="amqp://"
|
|
|
|
BROKER_URL = "amqp://guest:guest@localhost:5672//"
|
|
|
|
CELERY_IMPORTS=("compass.tasks.tasks",)
|
|
CELERY_ACCEPT_CONTENT = ['pickle', 'json', 'msgpack', 'yaml']
|
|
C_FORCE_ROOT = 1
|