Skip to content

Commit

Permalink
Releasing 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eandersson committed May 3, 2016
1 parent b36dd75 commit 6d622aa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,8 +1,12 @@
# Changelog

### Version 1.3.1
- Fixed SSL bug that could trigger an exceptions when running multiple threads. [#14]

- Fixed bug when using channel.basic.get to retrieve large payloads.

- Improved code documentation.

- Reduced default RPC timeout from 360s to 120s.

### Version 1.3.0
Expand Down
3 changes: 2 additions & 1 deletion examples/scalable_consumer.py
Expand Up @@ -52,7 +52,8 @@ def increase_consumers(self):
:return:
"""
self.number_of_consumers += 1
if self.number_of_consumers <= 20:
self.number_of_consumers += 1

def decrease_consumers(self):
"""Stop one consumer.
Expand Down
3 changes: 2 additions & 1 deletion examples/scalable_rpc_server.py
Expand Up @@ -62,7 +62,8 @@ def increase_consumers(self):
:return:
"""
self.number_of_consumers += 1
if self.number_of_consumers <= 20:
self.number_of_consumers += 1

def decrease_consumers(self):
"""Stop one consumer.
Expand Down

0 comments on commit 6d622aa

Please sign in to comment.