Fix docker-compose installs

In a series of unfortunate events, my patch yesterday didnt actually work. This fixes that.
This commit is contained in:
Shane McDonald
2019-03-27 12:01:10 -04:00
parent 055e7b4974
commit c3ba851908
8 changed files with 29 additions and 44 deletions

View File

@@ -12,9 +12,10 @@ DATABASES = {
BROKER_URL = 'amqp://{}:{}@{}:{}/{}'.format(
"{{ rabbitmq_user }}",
"{{ rabbitmq_password }}",
"localhost",
"rabbitmq",
"5672",
"awx")
CHANNEL_LAYERS = {
'default': {'BACKEND': 'asgi_amqp.AMQPChannelLayer',
'ROUTING': 'awx.main.routing.channel_routing',