I am using Django Channels already quite a while (v2) and I just noticed 
that when I disable all my workers, that the consumers still work.

I am using the channels_redis.core.RedisChannelLayer and my Routing looks 
like that:
application = ProtocolTypeRouter({
    "websocket": URLRouter([
        url("^ws/chat/$", chat_consumers.ChatConsumer),
        url("^ws/notifications/$", 
notifications_consumers.NotificationConsumer)
    ])
})

Any ideas in this regard?

BR,

Christopher

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
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/7bf03af7-a192-48d6-9c19-369e3b88781e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to