File: plugin-directory-55861f4098813ba6.yaml

package info (click to toggle)
python-neutron-lib 2.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,004 kB
  • sloc: python: 20,559; pascal: 615; sh: 98; makefile: 22
file content (15 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
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/