d825414677
Thorough replacement of git.openstack.org URLs with their opendev.org counterparts. Change-Id: I18b8181e29b1d81245df3534e75f13bde3c80ef3
16 lines
434 B
YAML
16 lines
434 B
YAML
---
|
|
features:
|
|
- |
|
|
Introduced neutron_lib.plugins.directory to get references
|
|
for loaded plugins in a neutron server process. For example:
|
|
|
|
.. code-block:: python
|
|
|
|
from neutron_lib import constants
|
|
from neutron_lib.plugins import directory
|
|
|
|
core_plugin = directory.get_plugin()
|
|
l3_plugin = directory.get_plugin(constants.L3)
|
|
|
|
For more examples, see: https://review.opendev.org/#/c/386845/
|