diff --git a/ChannelsDrawShareSite/settings.py b/ChannelsDrawShareSite/settings.py index f9b54f8..2f698cb 100644 --- a/ChannelsDrawShareSite/settings.py +++ b/ChannelsDrawShareSite/settings.py @@ -74,13 +74,13 @@ WSGI_APPLICATION = 'ChannelsDrawShareSite.wsgi.application' ASGI_APPLICATION = 'ChannelsDrawShareSite.routing.application' CHANNEL_LAYERS = { + # 'default': { + # 'BACKEND': 'channels_redis.core.RedisChannelLayer', + # 'CONFIG': { + # "hosts": [('127.0.0.1', 6379)], + # }, + # }, 'default': { - 'BACKEND': 'channels_redis.core.RedisChannelLayer', - 'CONFIG': { - "hosts": [('127.0.0.1', 6379)], - }, - }, - 'heroku': { 'BACKEND': 'channels_redis.core.RedisChannelLayer', 'CONFIG': { "hosts": [os.environ.get('REDIS_URL', 'redis://localhost:6379')],