neutron-lib/releasenotes/notes/plugin-directory-55861f4098813ba6.yaml
ZhongShengping d825414677 Replace git.openstack.org URLs with opendev.org URLs
Thorough replacement of git.openstack.org URLs with their opendev.org
counterparts.

Change-Id: I18b8181e29b1d81245df3534e75f13bde3c80ef3
2019-04-22 11:23:33 +08:00

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/