Skip to content

Commit 48265cd

Browse files
committed
Releasing 1.3.2
1 parent 701134e commit 48265cd

File tree

4 files changed

+11
-20
lines changed

4 files changed

+11
-20
lines changed

CHANGELOG

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Changelog
22

33
### Version 1.3.2
4-
- Fixed an unlikely bug in the Poller.
4+
- Fixed a minor bug in the Poller error handling.
5+
- Fixed an issue where network corruption caused a connection error to throw the wrong exception.
56

67
### Version 1.3.1
7-
- Fixed SSL bug that could trigger an exception when running multiple threads. [#14]
8-
9-
- Fixed bug when using channel.basic.get to retrieve large payloads.
10-
11-
- Improved code documentation.
12-
8+
- Fixed a SSL bug that could trigger an exception when running multiple threads. [#14]
9+
- Fixed a bug when using channel.basic.get to retrieve large payloads.
1310
- Reduced default RPC timeout from 360s to 120s.
1411

1512
### Version 1.3.0
13+
- Removed noisy logging.
14+
- Fixed Runtime exception caused by listener trying to join itself.
15+
- Channels are no longer closed after RabbitMQ throws a recoverable exception.
1616
- Added Error mapping based on the AMQP 0.9.1 specifications (when applicable).
1717
Introduced three new variables to the AMQP-Storm Exceptions.
1818
- error_code: This provides HTTP style error codes based on the AMQP Specification.
@@ -26,11 +26,3 @@
2626
except AMQPChannelError as why:
2727
if why.error_code == 312:
2828
self.channel.queue.declare(queue_name)
29-
30-
- Fixed Runtime exception caused by listener trying to join itself.
31-
32-
- Channels are no longer closed after the Channel throws a recoverable exception.
33-
34-
- Removed noisy logging.
35-
36-
- Updated examples, and removed old examples.

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ Thread-safe Python RabbitMQ Client Library based on pamqp.
66

77
Introduction
88
-------------
9-
AMQP-Storm is a library designed to be easy to use, stable and thread-safe.
9+
AMQP-Storm is a library designed to be consistent, stable and thread-safe.
1010

11+
- 99%+ Unit-test coverage!
1112
- Supports Python 2.6, 2.7 and Python 3+.
1213
- When using a SSL connection, TLSv1 or higher is required.
1314

amqpstorm/connection.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ def __init__(self, hostname, username, password, port=5672, **kwargs):
3939
:param dict ssl_options: SSL kwargs (from ssl.wrap_socket)
4040
:param bool lazy: Lazy initialize the connection
4141
42-
:raises AMQPConnectionError: Raises if a Connection cannot be
43-
established.
42+
:raises AMQPConnectionError: Raises on Connection error.
4443
4544
:return:
4645
"""

amqpstorm/uri_connection.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ def __init__(self, uri, lazy=False):
2525
:raises TypeError: Raises on invalid uri.
2626
:raises ValueError: Raises on invalid uri.
2727
:raises AttributeError: Raises on invalid uri.
28-
:raises AMQPConnectionError: Raises if a Connection cannot be
29-
established.
28+
:raises AMQPConnectionError: Raises on Connection error.
3029
"""
3130
uri = compatibility.patch_uri(uri)
3231
parsed_uri = urlparse.urlparse(uri)

0 commit comments

Comments
 (0)