channels_layers does not need routing

This commit is contained in:
brad stein 2018-10-24 08:45:51 -05:00
parent dfa6f53be3
commit 592805e514

View File

@ -84,8 +84,7 @@ CHANNEL_LAYERS = {
'BACKEND': 'channels_redis.core.RedisChannelLayer', 'BACKEND': 'channels_redis.core.RedisChannelLayer',
'CONFIG': { 'CONFIG': {
"hosts": [os.environ.get('REDIS_URL', 'redis://localhost:6379')], "hosts": [os.environ.get('REDIS_URL', 'redis://localhost:6379')],
}, }
"ROUTING": "chat.routing.channel_routing",
} }
} }