summaryrefslogtreecommitdiff
path: root/oslo_messaging/_drivers/amqp1_driver/controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'oslo_messaging/_drivers/amqp1_driver/controller.py')
-rw-r--r--oslo_messaging/_drivers/amqp1_driver/controller.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/oslo_messaging/_drivers/amqp1_driver/controller.py b/oslo_messaging/_drivers/amqp1_driver/controller.py
index 6297507..5451cab 100644
--- a/oslo_messaging/_drivers/amqp1_driver/controller.py
+++ b/oslo_messaging/_drivers/amqp1_driver/controller.py
@@ -1022,9 +1022,9 @@ class Controller(pyngus.ConnectionEventHandler):
def _do_connect(self):
"""Establish connection and reply subscription on processor thread."""
host = self.hosts.current
- conn_props = {'properties': {u'process': self._command,
- u'pid': self._pid,
- u'node': self._node}}
+ conn_props = {'properties': {'process': self._command,
+ 'pid': self._pid,
+ 'node': self._node}}
# only set hostname in the AMQP 1.0 Open performative if the message
# bus can interpret it as the virtual host. We leave it unspecified
# since apparently noone can agree on how it should be used otherwise!