mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 11:20:39 -03:30
Merge pull request #1397 from shanemcd/devel
Fix celery 3 broker url reference in standalone docker install
This commit is contained in:
commit
7087341570
@ -85,7 +85,7 @@ DATABASES = {
|
||||
}
|
||||
}
|
||||
|
||||
CELERY_BROKER_URL = 'amqp://{}:{}@{}:{}/{}'.format(
|
||||
BROKER_URL = 'amqp://{}:{}@{}:{}/{}'.format(
|
||||
os.getenv("RABBITMQ_USER", None),
|
||||
os.getenv("RABBITMQ_PASSWORD", None),
|
||||
os.getenv("RABBITMQ_HOST", None),
|
||||
@ -95,7 +95,7 @@ CELERY_BROKER_URL = 'amqp://{}:{}@{}:{}/{}'.format(
|
||||
CHANNEL_LAYERS = {
|
||||
'default': {'BACKEND': 'asgi_amqp.AMQPChannelLayer',
|
||||
'ROUTING': 'awx.main.routing.channel_routing',
|
||||
'CONFIG': {'url': CELERY_BROKER_URL}}
|
||||
'CONFIG': {'url': BROKER_URL}}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user