Replace rabbitmq with redis

Closes #592
This commit is contained in:
Adarnof 2016-12-14 08:28:58 -05:00 committed by GitHub
parent 046ecce8a3
commit a4a8852400

View File

@ -19,7 +19,7 @@ from django.contrib import messages
djcelery.setup_loader() djcelery.setup_loader()
# Celery configuration # Celery configuration
BROKER_URL = 'amqp://guest:guest@localhost:5672/' BROKER_URL = 'redis://localhost:6379/0'
CELERYBEAT_SCHEDULER = "djcelery.schedulers.DatabaseScheduler" CELERYBEAT_SCHEDULER = "djcelery.schedulers.DatabaseScheduler"
# Build paths inside the project like this: os.path.join(BASE_DIR, ...) # Build paths inside the project like this: os.path.join(BASE_DIR, ...)