summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorBrian Maissy <brian@medigate.io>2019-10-24 09:29:00 +0300
committerAndy McCurdy <andy@andymccurdy.com>2019-10-24 00:06:11 -0700
commitc1415c296be56ec14fa29aaa2af04eb1c8278f77 (patch)
tree9cb9adddb1404c7d8418902da04f715e4b690156 /CHANGES
parentfa0b0392c86126cae1a264197dddab647fa37821 (diff)
downloadredis-py-c1415c296be56ec14fa29aaa2af04eb1c8278f77.tar.gz
Allow Pipeline.execute() to execute on empty command stack if it is watching keys
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES7
1 files changed, 6 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 73d2d4e..7c0d888 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,9 +1,14 @@
+* (IN DEVELOPMENT)
+ * Allow empty pipelines to be executed if there are WATCHed keys.
+ This is a convenient way to test if any of the watched keys changed
+ without actually running any other commands. Thanks @brianmaissy.
+ #1233, #1234
* 3.3.11
* Further fix for the SSLError -> TimeoutError mapping to work
on obscure releases of Python 2.7.
* 3.3.10
* Fixed a potential error handling bug for the SSLError -> TimeoutError
- mapping introduced in 3.3.9. hanks @zbristow. #1224
+ mapping introduced in 3.3.9. Thanks @zbristow. #1224
* 3.3.9
* Mapped Python 2.7 SSLError to TimeoutError where appropriate. Timeouts
should now consistently raise TimeoutErrors on Python 2.7 for both