]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fix notification driver package
authorDavanum Srinivas <davanum@gmail.com>
Sat, 7 Nov 2015 19:14:05 +0000 (14:14 -0500)
committerDavanum Srinivas <davanum@gmail.com>
Sat, 7 Nov 2015 19:14:08 +0000 (14:14 -0500)
In oslo.messaging change:
Ifb96c2ae9868426cac2700bf4917c27c02c90b15

the private package for the messaging driver was changed
to a public package. So we should fix our reference here
in our setup.cfg

Closes-Bug: #1513630

Change-Id: I6b066f4f1b6c6485cb67ca5f8a2a17359521c264

setup.cfg

index 3eb8e8fa289f099914ae171511fef99e904ff7a3..7e4e8f8a988693c805667eb6d6458af64c688cc8 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -160,9 +160,9 @@ neutron.agent.linux.pd_drivers =
 oslo.messaging.notify.drivers =
     neutron.openstack.common.notifier.log_notifier = oslo_messaging.notify._impl_log:LogDriver
     neutron.openstack.common.notifier.no_op_notifier = oslo_messaging.notify._impl_noop:NoOpDriver
-    neutron.openstack.common.notifier.rpc_notifier2 = oslo_messaging.notify._impl_messaging:MessagingV2Driver
-    neutron.openstack.common.notifier.rpc_notifier = oslo_messaging.notify._impl_messaging:MessagingDriver
     neutron.openstack.common.notifier.test_notifier = oslo_messaging.notify._impl_test:TestDriver
+    neutron.openstack.common.notifier.rpc_notifier2 = oslo_messaging.notify.messaging:MessagingV2Driver
+    neutron.openstack.common.notifier.rpc_notifier = oslo_messaging.notify.messaging:MessagingDriver
 neutron.db.alembic_migrations =
     neutron = neutron.db.migration:alembic_migrations
 neutron.interface_drivers =