summaryrefslogtreecommitdiff
path: root/oslo_messaging/opts.py
diff options
context:
space:
mode:
authorFlavio Percoco <flaper87@gmail.com>2015-11-03 22:34:22 -0200
committerFlavio Percoco <fpercoco@redhat.com>2015-11-20 18:43:28 +0000
commit925eb734a9d3cb46bb89a89ec1a78281d2d7afe9 (patch)
tree671a763eae97202835f0f86ec4b2d7df968024f5 /oslo_messaging/opts.py
parent13dbf4d4bbba63a395dfa0891b59f61bc30274f0 (diff)
downloadoslo-messaging-925eb734a9d3cb46bb89a89ec1a78281d2d7afe9.tar.gz
Remove qpidd's driver from the tree
Back in liberty we marked this driver as deprecated. This patch removes it from the tree. The patch also removes tests, options and other references in the documentation. Note that one script is being kept because it's required by the amqp driver. Depends-On: If4b1773334e424d1f4a4e112bd1f10aca62682a9 Change-Id: I4a9cba314c4a2f24307504fa7b5427424268b114
Diffstat (limited to 'oslo_messaging/opts.py')
-rw-r--r--oslo_messaging/opts.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/oslo_messaging/opts.py b/oslo_messaging/opts.py
index c585659..263c59f 100644
--- a/oslo_messaging/opts.py
+++ b/oslo_messaging/opts.py
@@ -22,7 +22,6 @@ import itertools
from oslo_messaging._drivers import amqp
from oslo_messaging._drivers import base as drivers_base
-from oslo_messaging._drivers import impl_qpid
from oslo_messaging._drivers import impl_rabbit
from oslo_messaging._drivers import impl_zmq
from oslo_messaging._drivers.protocols.amqp import opts as amqp_opts
@@ -48,8 +47,6 @@ _opts = [
('oslo_messaging_amqp', amqp_opts.amqp1_opts),
('oslo_messaging_rabbit', list(itertools.chain(amqp.amqp_opts,
impl_rabbit.rabbit_opts))),
- ('oslo_messaging_qpid', list(itertools.chain(amqp.amqp_opts,
- impl_qpid.qpid_opts)))
]