Skip to content

Commit

Permalink
release v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
NoneGG committed Mar 31, 2018
1 parent 613d3db commit bc75f74
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,11 @@ Release Notes
* sync optimization of client list made by swilly22 from redis-py
* add support for distributed lock using redis cluster

1.1.2
-----
* fix bug: redis command encoding bug
* optimization: sync change on acquring lock from redis-py
* fix bug: decrement connection count on connection disconnected
* fix bug: optimize code proceed single node slots
* fix bug: initiation error of aws cluster client caused by not appropiate function list used
* fix bug: use `ssl_context` instead of ssl_keyfile,ssl_certfile,ssl_cert_reqs,ssl_ca_certs in intialization of connection_pool
2 changes: 1 addition & 1 deletion tests/cluster/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,7 @@ async def test_zscore(self, r):
async def test_zunionstore_fail_crossslot(self, r):
await r.flushdb()
await r.zadd('a', a1=1, a2=1, a3=1)
r.zadd('b', a1=2, a2=2, a3=2)
await r.zadd('b', a1=2, a2=2, a3=2)
await r.zadd('c', a1=6, a3=5, a4=4)
with pytest.raises(ResponseError) as excinfo:
await r.zunionstore('d', ['a', 'b', 'c'])
Expand Down

0 comments on commit bc75f74

Please sign in to comment.