Replies: 1 comment 4 replies
-
Hi @Guidoow — can you show how you're invoking the A minimal reproduce would be good to be able to help you |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi and thanks for reading!
I'm experimenting with in memory channel layers, because I can't use Redis with Windows yet, and I ran into a problem when I tried to consume a message from groups.
As I understood from reading the docs, the group_send method adds sent messages to a queue and, if there is a specified "type" key in the sent dictionary, executes a consumer function (named in the key value) that is in the specified group and has a persistent connection.
I'm new to development, anyway I got around to exploring the code, and I can tell that all the messages I send are perfectly queued, but there is no function execution.
Maybe there isn't only a persistent connection required from the user who is in the group, but too a message sent to the receive() consumer method for then manually check for queued messages, read and send them? or maybe I am doing something wrong?
Again, thanks for reading. <3
Beta Was this translation helpful? Give feedback.
All reactions