summaryrefslogtreecommitdiff
path: root/setup.cfg
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 /setup.cfg
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 'setup.cfg')
-rw-r--r--setup.cfg16
1 files changed, 0 insertions, 16 deletions
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