From dfa6f53be3c7e8de4b21b410328169265c5f001e Mon Sep 17 00:00:00 2001 From: brad stein Date: Wed, 24 Oct 2018 08:34:58 -0500 Subject: [PATCH] seems redis is the problem still --- ChannelsDrawShareSite/settings.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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')],