diff options
author | Rafael H. Schloming <rhs@apache.org> | 2010-04-01 21:36:56 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2010-04-01 21:36:56 +0000 |
commit | de5ca86b1cad3f879ffea1a0af0a58c7a8560d02 (patch) | |
tree | e95d8e36cfed53f9dca8c07abbe736fa63f016b2 /python/qpid/messaging/endpoints.py | |
parent | e63d139b7f275d2271d4a5f15b9894836ab1e371 (diff) | |
download | qpid-python-de5ca86b1cad3f879ffea1a0af0a58c7a8560d02.tar.gz |
added option to disable reconnect logging; fixed reconnect test to not loop forever if no broker is running; backups -> reconnect_hosts
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@930105 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/messaging/endpoints.py')
-rw-r--r-- | python/qpid/messaging/endpoints.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/messaging/endpoints.py b/python/qpid/messaging/endpoints.py index fd5dc35a42..be07c0818f 100644 --- a/python/qpid/messaging/endpoints.py +++ b/python/qpid/messaging/endpoints.py @@ -94,8 +94,8 @@ class Connection: else: self.reconnect_interval_max = options.get("reconnect_interval", 2*60) self.reconnect_limit = options.get("reconnect_limit") + self.reconnect_hosts = options.get("reconnect_hosts", []) self.transport = options.get("transport", "plain") - self.backups = options.get("backups", []) self.options = options if self.transport == "tls": |