summaryrefslogtreecommitdiff
path: root/oslo_messaging/opts.py
diff options
context:
space:
mode:
authorKenneth Giusti <kgiusti@gmail.com>2018-01-23 15:23:15 -0500
committerKenneth Giusti <kgiusti@gmail.com>2018-03-21 10:58:23 -0400
commit222a939361579f73fb33a51580fd2ed4d28decb3 (patch)
tree86565cf1f33acb57a1ba1bddac3c642305c1b4c4 /oslo_messaging/opts.py
parentdec178257b49c1992eeb66306a62b65d603e06ef (diff)
downloadoslo-messaging-222a939361579f73fb33a51580fd2ed4d28decb3.tar.gz
Remove the deprecated Pika driver6.0.0
It is recommended that all users of the Pika driver transition to using the Rabbit driver instead. Typically this is done by changing the prefix of the transport_url configuration option from "pika://..." to "rabbit://...". There are no changes required to the RabbitMQ server configuration. Change-Id: I52ea5ccb7e7c247abd95e2d8d50dac4c4ad11246 Closes-Bug: #1744741
Diffstat (limited to 'oslo_messaging/opts.py')
-rw-r--r--oslo_messaging/opts.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/oslo_messaging/opts.py b/oslo_messaging/opts.py
index b766bb3..3181ae4 100644
--- a/oslo_messaging/opts.py
+++ b/oslo_messaging/opts.py
@@ -23,11 +23,9 @@ import itertools
from oslo_messaging._drivers import amqp
from oslo_messaging._drivers.amqp1_driver import opts as amqp_opts
from oslo_messaging._drivers import base as drivers_base
-from oslo_messaging._drivers import impl_pika
from oslo_messaging._drivers import impl_rabbit
from oslo_messaging._drivers.impl_zmq import zmq_options
from oslo_messaging._drivers.kafka_driver import kafka_options
-from oslo_messaging._drivers.pika_driver import pika_connection_factory
from oslo_messaging._drivers.zmq_driver.matchmaker import zmq_matchmaker_redis
from oslo_messaging.notify import notifier
from oslo_messaging.rpc import client
@@ -50,10 +48,7 @@ _opts = [
('oslo_messaging_amqp', amqp_opts.amqp1_opts),
('oslo_messaging_notifications', notifier._notifier_opts),
('oslo_messaging_rabbit', list(
- itertools.chain(amqp.amqp_opts, impl_rabbit.rabbit_opts,
- pika_connection_factory.pika_opts,
- impl_pika.pika_pool_opts, impl_pika.message_opts,
- impl_pika.notification_opts, impl_pika.rpc_opts))),
+ itertools.chain(amqp.amqp_opts, impl_rabbit.rabbit_opts))),
('oslo_messaging_kafka', kafka_options.KAFKA_OPTS),
]