summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2018-11-15 09:04:09 -0800
committerGitHub <noreply@github.com>2018-11-15 09:04:09 -0800
commitf396979cd9ff4f57730a97c87dd6ee8121385e80 (patch)
tree5dd6dc5974727885c529d1edf7a4e51a754a8909
parent9b03af26dc829beea232a3248768de933f4c3b67 (diff)
parentb040bcfb515f6fc87e2acc827e106cda7596c166 (diff)
downloadredis-py-f396979cd9ff4f57730a97c87dd6ee8121385e80.tar.gz
Merge pull request #1069 from jvtm/unix-socket-self-cutoff
Add missing UnixDomainSocketConnection._buffer_cutoff
-rwxr-xr-xredis/connection.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/redis/connection.py b/redis/connection.py
index b38f24c..9b949c5 100755
--- a/redis/connection.py
+++ b/redis/connection.py
@@ -759,6 +759,7 @@ class UnixDomainSocketConnection(Connection):
'db': self.db,
}
self._connect_callbacks = []
+ self._buffer_cutoff = 6000
def _connect(self):
"Create a Unix domain socket connection"