summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2019-07-30 15:14:32 -0700
committerAndy McCurdy <andy@andymccurdy.com>2019-07-30 15:14:32 -0700
commit885ce770856a1ee5ebc51d7c5390c88fb62bc93e (patch)
treeea1f83c8382f289f96cdf7007c891d2835ff0699 /CHANGES
parent6b6e394ccb7199cb5e0d2e8192dc904aa0a8b347 (diff)
downloadredis-py-885ce770856a1ee5ebc51d7c5390c88fb62bc93e.tar.gz
version 3.3.4, more specifically identify nonblocking read errors
versions 3.3.1, 3.3.2 and 3.3.3 could potentially hide ConnectionErrors on Python 2.7. This change accurately identifies errors by both exception class and errno to determine whether a nonblocking socket can be read
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 924c88a..7b53f9c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+* 3.3.4
+ * More specifically identify nonblocking read errors for both SSL and
+ non-SSL connections. 3.3.1, 3.3.2 and 3.3.3 on Python 2.7 could
+ potentially mask a ConnectionError. #1197
* 3.3.3
* The SSL module in Python < 2.7.9 handles non-blocking sockets
differently than 2.7.9+. This patch accommodates older versions. #1197