summaryrefslogtreecommitdiff
path: root/redis/__init__.py
diff options
context:
space:
mode:
authorhuangwei-ds5 <huangwei-ds5@gome.com.cn>2019-08-09 15:54:57 +0800
committerAndy McCurdy <andy@andymccurdy.com>2019-08-19 12:30:39 -0700
commitd811ae71dbdbeeb4fc0ee73a96b7fbdb1aec8522 (patch)
tree928cee652b10c7ae6d0ba974ef47423f60a9f94f /redis/__init__.py
parentf0516c9f7589557883a5eb23a44531066e275950 (diff)
downloadredis-py-d811ae71dbdbeeb4fc0ee73a96b7fbdb1aec8522.tar.gz
version 3.3.8, fix MONITOR output to account for all types of clients3.3.8
The client section of MONITOR output varies for TCP connections, unix socket connections and commands executed from Lua scripts. Account for each of these cases by including an additional key `client_type` in the MONITOR output. `client_type` will be one of ('tcp', 'unix', 'lua'). `client_address` and `client_port` vary based on the `client_type`. Fixes #1201
Diffstat (limited to 'redis/__init__.py')
-rw-r--r--redis/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/__init__.py b/redis/__init__.py
index bfd1839..9395147 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -29,7 +29,7 @@ def int_or_str(value):
return value
-__version__ = '3.3.7'
+__version__ = '3.3.8'
VERSION = tuple(map(int_or_str, __version__.split('.')))
__all__ = [