diff --git a/AUTHORS b/AUTHORS index 8485b679..25b87307 100644 --- a/AUTHORS +++ b/AUTHORS @@ -43,6 +43,7 @@ James Turk Jason Cater Jasper Bryant-Greene Jeff Balogh +John Shuping John Spray John Watson Jonathan Halcrow diff --git a/kombu/connection.py b/kombu/connection.py index 87226d07..7dce4c8d 100644 --- a/kombu/connection.py +++ b/kombu/connection.py @@ -545,12 +545,9 @@ class Connection(object): transport_cls = RESOLVE_ALIASES.get(transport_cls, transport_cls) D = self.transport.default_connection_params - if self.alt: - hostname = ";".join(self.alt) - else: - hostname = self.hostname or D.get('hostname') - if self.uri_prefix: - hostname = '%s+%s' % (self.uri_prefix, hostname) + hostname = self.hostname or D.get('hostname') + if self.uri_prefix: + hostname = '%s+%s' % (self.uri_prefix, hostname) info = (('hostname', hostname), ('userid', self.userid or D.get('userid')), @@ -565,6 +562,10 @@ class Connection(object): ('login_method', self.login_method or D.get('login_method')), ('uri_prefix', self.uri_prefix), ('heartbeat', self.heartbeat)) + + if self.alt: + info += (('alternates', self.alt),) + return info def info(self):