I am using Django 2.0, django-channels 0.7.0, asgi-redis 1.4.3

On Thursday, December 7, 2017 at 1:33:22 PM UTC+5:30, Maitreya Verma wrote:
>
> I am following this tutorial 
> <https://gearheart.io/blog/creating-a-chat-with-django-channels/> to 
> learn django channels. 
> The following procedure was used :
>
>    - Add the following code in settings.py
>    redis_host=os.environ.get('REDIS_HOST','localhost')
>    
>    CHANNEL_LAYERS={
>        "default":{
>            "BACKEND":"asgi_redis.RedisChannelLayer",
>            "CONFIG":{
>                "hosts":[(redis_host),6379],
>            },
>            "ROUTING":'channelproj.routing.channel_routing',
>        },
>    }
>    
>    - Create a file routing.py and add the following code
>    from channels import route
>    # This function will display all messages received in the console
>    def message_handler(message):
>        print(message['text'])
>    
>    channel_routing = [
>        route("websocket.receive", message_handler),
>    ]
>    
>    - run server using python manage.py runserver and then try to connect 
>    to server using  ws.connect("ws://localhost:8000/")
>
> I am getting the following error
> websocket._exceptions.WebSocketBadStatusException: Handshake status 200
>
> What can be the reason for this error and how can it be rectified?
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/7a052cd8-7070-4606-8e94-b3a6ad4a4840%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to