From 222a939361579f73fb33a51580fd2ed4d28decb3 Mon Sep 17 00:00:00 2001 From: Kenneth Giusti Date: Tue, 23 Jan 2018 15:23:15 -0500 Subject: Remove the deprecated Pika driver 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 --- setup.cfg | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index f5bda49..795191d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -41,7 +41,6 @@ oslo.messaging.drivers = # This is just for internal testing fake = oslo_messaging._drivers.impl_fake:FakeDriver - pika = oslo_messaging._drivers.impl_pika:PikaDriver oslo.messaging.executors = blocking = futurist:SynchronousExecutor @@ -56,21 +55,6 @@ oslo.messaging.notify.drivers = noop = oslo_messaging.notify._impl_noop:NoOpDriver routing = oslo_messaging.notify._impl_routing:RoutingDriver -oslo.messaging.pika.connection_factory = - # Creates new connection for each create_connection call. Old-style behaviour - # Uses a much more connections then single and read_write factories but still available as - # an option - new = oslo_messaging._drivers.pika_driver.pika_connection_factory:PikaConnectionFactory - - # Creates only one connection for transport and return it for each create connection call - # it is default, but you can not use it with synchronous executor - single = oslo_messaging._drivers.pika_driver.pika_connection_factory:SinglePikaConnectionFactory - - # Create two connections - one for listening and another one for sending and return them - # for each create connection call depending on connection purpose. Creates one more connection - # but you can use it with synchronous executor - read_write = oslo_messaging._drivers.pika_driver.pika_connection_factory:ReadWritePikaConnectionFactory - oslo.messaging.zmq.matchmaker = # Matchmakers for ZeroMQ dummy = oslo_messaging._drivers.zmq_driver.matchmaker.zmq_matchmaker_base:MatchmakerDummy -- cgit v1.2.1