Update to asgi_amqp 1.0.1

This commit is contained in:
Wayne Witzel III
2017-11-27 19:34:52 +00:00
parent 33ff10728d
commit a858093db8
6 changed files with 15 additions and 17 deletions

View File

@@ -87,7 +87,7 @@ CELERY_BROKER_URL = "amqp://{}:{}@{}/{}".format(os.environ.get("RABBITMQ_USER"),
urllib.quote(os.environ.get("RABBITMQ_VHOST", "/"), safe=''))
CHANNEL_LAYERS = {
'default': {'BACKEND': 'asgi_rabbitmq.RabbitmqChannelLayer',
'default': {'BACKEND': 'asgi_amqp.AMQPChannelLayer',
'ROUTING': 'awx.main.routing.channel_routing',
'CONFIG': {'url': CELERY_BROKER_URL}}
}