From a4a88524007151d9799405f4d91b7b193d258ca3 Mon Sep 17 00:00:00 2001 From: Adarnof Date: Wed, 14 Dec 2016 08:28:58 -0500 Subject: [PATCH] Replace rabbitmq with redis Closes #592 --- alliance_auth/settings.py.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alliance_auth/settings.py.example b/alliance_auth/settings.py.example index 271eace0..fa6a5aa3 100644 --- a/alliance_auth/settings.py.example +++ b/alliance_auth/settings.py.example @@ -19,7 +19,7 @@ from django.contrib import messages djcelery.setup_loader() # Celery configuration -BROKER_URL = 'amqp://guest:guest@localhost:5672/' +BROKER_URL = 'redis://localhost:6379/0' CELERYBEAT_SCHEDULER = "djcelery.schedulers.DatabaseScheduler" # Build paths inside the project like this: os.path.join(BASE_DIR, ...)