Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion channels_redis/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ async def send(self, channel, message):
# Pick a connection to the right server - consistent for specific
# channels, random for general channels
if "!" in channel:
index = self.consistent_hash(channel)
index = self.consistent_hash(channel_non_local_name)
else:
index = next(self._send_index_generator)
async with self.connection(index) as connection:
Expand Down