Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions tests/test_asyncio/test_pubsub.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,8 +434,7 @@ async def test_unicode_channel_message_handler(self, r: valkey.Valkey):
await p.aclose()

@pytest.mark.onlynoncluster
# see: https://valkey-py-cluster.readthedocs.io/en/stable/pubsub.html
# #known-limitations-with-pubsub
# see: https://valkey-py.readthedocs.io/en/latest/clustering.html#known-pubsub-limitations # noqa: E501
async def test_unicode_pattern_message_handler(self, r: valkey.Valkey):
p = r.pubsub(ignore_subscribe_messages=True)
pattern = "uni" + chr(4456) + "*"
Expand Down
3 changes: 1 addition & 2 deletions tests/test_pubsub.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,8 +569,7 @@ def test_unicode_shard_channel_message_handler(self, r):
assert self.message == make_message("smessage", channel, "test message")

@pytest.mark.onlynoncluster
# see: https://valkey-py-cluster.readthedocs.io/en/stable/pubsub.html
# #known-limitations-with-pubsub
# see: https://valkey-py.readthedocs.io/en/latest/clustering.html#known-pubsub-limitations # noqa: E501
def test_unicode_pattern_message_handler(self, r):
p = r.pubsub(ignore_subscribe_messages=True)
pattern = "uni" + chr(4456) + "*"
Expand Down
2 changes: 1 addition & 1 deletion valkey/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -1700,7 +1700,7 @@ class ClusterPubSub(PubSub):
IMPORTANT: before using ClusterPubSub, read about the known limitations
with pubsub in Cluster mode and learn how to workaround them:
https://valkey-py-cluster.readthedocs.io/en/stable/pubsub.html
https://valkey-py.readthedocs.io/en/latest/clustering.html#known-pubsub-limitations
"""

def __init__(
Expand Down