From f868936d66f80d5165c742bf4e83bc627124e497 Mon Sep 17 00:00:00 2001 From: Kenneth Giusti Date: Wed, 24 Feb 2016 16:02:32 -0500 Subject: [PATCH] Fix a minor syntax error in a log statement Change-Id: If6115045dbaf2229b1229d259787ecd207348603 --- oslo_messaging/_drivers/protocols/amqp/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo_messaging/_drivers/protocols/amqp/controller.py b/oslo_messaging/_drivers/protocols/amqp/controller.py index bd8756400..d89eb0ae7 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)