mirror of
https://github.com/ansible/awx.git
synced 2026-04-11 04:59:22 -02:30
Fix a redis reference issue
We are no longer using redis for Celery
This commit is contained in:
@@ -364,7 +364,7 @@ os.environ.setdefault('DJANGO_LIVE_TEST_SERVER_ADDRESS', 'localhost:9013-9199')
|
|||||||
# Initialize Django-Celery.
|
# Initialize Django-Celery.
|
||||||
djcelery.setup_loader()
|
djcelery.setup_loader()
|
||||||
|
|
||||||
BROKER_URL = 'redis://localhost/'
|
BROKER_URL = 'amqp://guest:guest@localhost:5672//'
|
||||||
CELERY_DEFAULT_QUEUE = 'default'
|
CELERY_DEFAULT_QUEUE = 'default'
|
||||||
CELERY_TASK_SERIALIZER = 'json'
|
CELERY_TASK_SERIALIZER = 'json'
|
||||||
CELERY_RESULT_SERIALIZER = 'json'
|
CELERY_RESULT_SERIALIZER = 'json'
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ if is_testing(sys.argv):
|
|||||||
MONGO_DB = 'system_tracking_test'
|
MONGO_DB = 'system_tracking_test'
|
||||||
|
|
||||||
# Celery AMQP configuration.
|
# Celery AMQP configuration.
|
||||||
BROKER_URL = 'redis://localhost/'
|
BROKER_URL = 'amqp://guest:guest@localhost:5672'
|
||||||
|
|
||||||
# Set True to enable additional logging from the job_event_callback plugin
|
# Set True to enable additional logging from the job_event_callback plugin
|
||||||
JOB_CALLBACK_DEBUG = False
|
JOB_CALLBACK_DEBUG = False
|
||||||
|
|||||||
Reference in New Issue
Block a user