summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Giusti <kgiusti@gmail.com>2016-02-24 16:02:32 -0500
committerKenneth Giusti <kgiusti@gmail.com>2016-02-24 16:02:32 -0500
commitf868936d66f80d5165c742bf4e83bc627124e497 (patch)
treeee46ad735281829b2a3d50bcd6719788aec4cb72
parent7a537b2c6025449ad94d70440c4707e8ffd80b7c (diff)
downloadoslo-messaging-f868936d66f80d5165c742bf4e83bc627124e497.tar.gz
Fix a minor syntax error in a log statement
Change-Id: If6115045dbaf2229b1229d259787ecd207348603
-rw-r--r--oslo_messaging/_drivers/protocols/amqp/controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oslo_messaging/_drivers/protocols/amqp/controller.py b/oslo_messaging/_drivers/protocols/amqp/controller.py
index bd87564..d89eb0a 100644
--- a/oslo_messaging/_drivers/protocols/amqp/controller.py
+++ b/oslo_messaging/_drivers/protocols/amqp/controller.py
@@ -667,6 +667,6 @@ class Controller(pyngus.ConnectionEventHandler):
self._senders = {}
self._socket_connection.reset()
host = self.hosts.next()
- LOG.info(_LI("Reconnecting to: %(hostname):%(port)"),
+ LOG.info(_LI("Reconnecting to: %(hostname)s:%(port)s"),
{'hostname': host.hostname, 'port': host.port})
self._socket_connection.connect(host)