From 592805e51418ea5662487c51af75c4507eee2d27 Mon Sep 17 00:00:00 2001 From: brad stein Date: Wed, 24 Oct 2018 08:45:51 -0500 Subject: [PATCH] channels_layers does not need routing --- ChannelsDrawShareSite/settings.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ChannelsDrawShareSite/settings.py b/ChannelsDrawShareSite/settings.py index 2f698cb..6acf71d 100644 --- a/ChannelsDrawShareSite/settings.py +++ b/ChannelsDrawShareSite/settings.py @@ -84,8 +84,7 @@ CHANNEL_LAYERS = { 'BACKEND': 'channels_redis.core.RedisChannelLayer', 'CONFIG': { "hosts": [os.environ.get('REDIS_URL', 'redis://localhost:6379')], - }, - "ROUTING": "chat.routing.channel_routing", + } } }