Skip to content

Tags: barshaul/redis-py

Tags

3.5.0

Toggle 3.5.0's commit message
version 3.5.0

3.3.11

Toggle 3.3.11's commit message
Version 3.3.11

check exception.args rather than exception.message. exception.message
was deprecated prior to Python 2.7 and some alternative builds have
removed it completely.

3.3.10

Toggle 3.3.10's commit message
Version 3.3.10

Fix SSL regression introduced in 3.3.9

The wrapper introduced to handle SSL timeout errors in Python 2.7
incorrectly assumed that instances of SSLError would always have a
string as their first element. The safer approach is to check the
message attribute on the error.

3.3.9

Toggle 3.3.9's commit message
Version 3.3.9

Fixes SSL read timeouts in Python 2.7

The ssl module in Python 2.7 raises timeouts as ssl.SSLError instead of
socket.timeout. When these timeouts are encountered, the error will be
re-raised as socket.timeout so it is handled appropriately by the
connection.

3.3.8

Toggle 3.3.8's commit message
version 3.3.8, fix MONITOR output to account for all types of clients

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 redis#1201