From 08e45107467fbf0ceb487ed0aebc55dc98a6da7d Mon Sep 17 00:00:00 2001 From: David Ripton Date: Fri, 16 Aug 2013 10:19:59 -0400 Subject: [PATCH] Fix case error in qpid exchange name. s/Direct/direct/ Fixes bug #1211338 (This is a minimal merge of just oslo-incubator bec54ac5 and no other oslo changes.) Change-Id: I129f9486f13be91868824e0e0534c4760d50589b --- neutron/openstack/common/rpc/impl_qpid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/openstack/common/rpc/impl_qpid.py b/neutron/openstack/common/rpc/impl_qpid.py index a5f934e4d..18f3db81c 100644 --- a/neutron/openstack/common/rpc/impl_qpid.py +++ b/neutron/openstack/common/rpc/impl_qpid.py @@ -285,7 +285,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): -- 2.45.2