diff options
Diffstat (limited to 'deploy/compass_conf/celeryconfig')
-rwxr-xr-x | deploy/compass_conf/celeryconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/deploy/compass_conf/celeryconfig b/deploy/compass_conf/celeryconfig new file mode 100755 index 00000000..f4911279 --- /dev/null +++ b/deploy/compass_conf/celeryconfig @@ -0,0 +1,9 @@ +## 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 |