diff options
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": |