From ca8950ef6744f56303759e8d5ad73e0ef3a03b8f Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Thu, 3 Mar 2016 16:44:01 +0100 Subject: [PATCH] lbaas: use stevedore entrypoint for service plugin Using full python import names is not recommended or supported. It's also error prone since any original python module rename will break setups relying on internal python paths. Instead of it, use stevedore alias: https://git.openstack.org/cgit/openstack/neutron-lbaas/tree/setup.cfg#n47 Change-Id: I6f9522031b4cbe373fea0032f8e7fb1fcaf9e910 --- doc/admin-guide-cloud/source/networking_config-agents.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/admin-guide-cloud/source/networking_config-agents.rst b/doc/admin-guide-cloud/source/networking_config-agents.rst index 803e9fdd82..a8d263b1a3 100644 --- a/doc/admin-guide-cloud/source/networking_config-agents.rst +++ b/doc/admin-guide-cloud/source/networking_config-agents.rst @@ -350,16 +350,14 @@ For the back end, use either Octavia or Haproxy. This example uses Octavia. .. code-block:: ini - service_plugins = neutron_lbaas.services.loadbalancer.plugin. - LoadBalancerPluginv2 + service_plugins = lbaasv2 If this option is already defined, add the load-balancing plug-in to the list using a comma as a separator. For example: .. code-block:: ini - service_plugins = [already defined plugins], - neutron_lbaas.services.loadbalancer.plugin.LoadBalancerPluginv2 + service_plugins = [already defined plugins],lbaasv2