We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using RedisChannelLayer, if multiple redis hosts are set in CONFIG, some messages from outside of consumer will not be received.
Use send method, not group_send.
The text was updated successfully, but these errors were encountered:
Found the bug, replace line 300 in the core.py file of channels_redis with index = self.consistent_hash(channel_non_local_name)
index = self.consistent_hash(channel_non_local_name)
Sorry, something went wrong.
Hi @weibao — Can you open an issue on https://github.com/django/channels_redis/ perhaps with a PR, and a test showing the issue?
@carltongibson Sorry, I don't know much about git and github, it takes some time to learn these.
Successfully merging a pull request may close this issue.
When using RedisChannelLayer, if multiple redis hosts are set in CONFIG, some messages from outside of consumer will not be received.
Use send method, not group_send.
The text was updated successfully, but these errors were encountered: