summaryrefslogtreecommitdiff
path: root/redis/connection.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/connection.py')
-rwxr-xr-xredis/connection.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/redis/connection.py b/redis/connection.py
index cb9acb4..35e9491 100755
--- a/redis/connection.py
+++ b/redis/connection.py
@@ -63,11 +63,6 @@ if HIREDIS_AVAILABLE:
HIREDIS_SUPPORTS_ENCODING_ERRORS = \
hiredis_version >= LooseVersion('1.0.0')
- if not HIREDIS_SUPPORTS_BYTE_BUFFER:
- msg = ("redis-py works best with hiredis >= 0.1.4. You're running "
- "hiredis %s. Please consider upgrading." % hiredis.__version__)
- warnings.warn(msg)
-
HIREDIS_USE_BYTE_BUFFER = True
# only use byte buffer if hiredis supports it
if not HIREDIS_SUPPORTS_BYTE_BUFFER: