From 86f2e74e13ca66446ed71922965b491424b4fffb Mon Sep 17 00:00:00 2001 From: Kenneth Giusti Date: Mon, 16 Sep 2013 15:14:39 -0400 Subject: [PATCH] Fixes a typo in the address string syntax Closes-Bug: #1211338 Change-Id: I49ffc4f70cfa54a03c47537c16c35646d38f84c6 --- oslo/messaging/_drivers/impl_qpid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo/messaging/_drivers/impl_qpid.py b/oslo/messaging/_drivers/impl_qpid.py index 93eba029d..ff87f4f56 100644 --- a/oslo/messaging/_drivers/impl_qpid.py +++ b/oslo/messaging/_drivers/impl_qpid.py @@ -321,7 +321,7 @@ class DirectPublisher(Publisher): def __init__(self, conf, session, msg_id): """Init a 'direct' publisher.""" super(DirectPublisher, self).__init__(session, msg_id, - {"type": "Direct"}) + {"type": "direct"}) class TopicPublisher(Publisher):