diff options
author | andy <andy@whiskeymedia.com> | 2012-11-16 11:31:50 -0800 |
---|---|---|
committer | andy <andy@whiskeymedia.com> | 2012-11-16 11:31:50 -0800 |
commit | fe60fc97128eda8d0d12468cddd3cc5fd002232e (patch) | |
tree | bde32e83c7808d1eb18646cd7aeaf58a0e52dfb8 /redis/exceptions.py | |
parent | 76d516aa6e4a9e4a6e690d37dc577c6662d5ec87 (diff) | |
download | redis-py-fe60fc97128eda8d0d12468cddd3cc5fd002232e.tar.gz |
always raise parse error exceptions in multi/exec pipelines as a result of this
server change: https://groups.google.com/forum/?hl=en&fromgroups=#!topic/redis-db/VUiEFT8U8U0
Diffstat (limited to 'redis/exceptions.py')
-rw-r--r-- | redis/exceptions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/redis/exceptions.py b/redis/exceptions.py index 3462c36..6bb5fa7 100644 --- a/redis/exceptions.py +++ b/redis/exceptions.py @@ -34,3 +34,6 @@ class WatchError(RedisError): class NoScriptError(ResponseError): pass + +class ExecAbortError(ResponseError): + pass |