summaryrefslogtreecommitdiff
path: root/redis/asyncio/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/asyncio/client.py')
-rw-r--r--redis/asyncio/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/asyncio/client.py b/redis/asyncio/client.py
index 5ef1f32..2cd2dad 100644
--- a/redis/asyncio/client.py
+++ b/redis/asyncio/client.py
@@ -255,7 +255,7 @@ class Redis(
self.response_callbacks = CaseInsensitiveDict(self.__class__.RESPONSE_CALLBACKS)
- if self.connection_pool.connection_kwargs.get("protocol") == "3":
+ if self.connection_pool.connection_kwargs.get("protocol") in ["3", 3]:
self.response_callbacks.update(self.__class__.RESP3_RESPONSE_CALLBACKS)
# If using a single connection client, we need to lock creation-of and use-of