From 308342001e9f66311999b73d5c349c3e0cd4a257 Mon Sep 17 00:00:00 2001 From: Ian Wells Date: Tue, 29 Nov 2016 11:05:48 -0800 Subject: [PATCH] Add entry point to our Neutron plugin This allows Neutron to load it by short name as well as with the full path - core_drivers = path.to.GluonPluginClass (before) core_drivers = gluon (new) so that it can be used from Neutron using the modern stevedore discovery mechanism. The old mechanism will, at some point, be deprecated. Change-Id: I9b357e58ac76474e15d6d273dd710d106cea00dd --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index f9d6930..dfb6b04 100644 --- a/setup.cfg +++ b/setup.cfg @@ -39,6 +39,9 @@ gluon.backends = gluon.managers = net-l3vpn = gluon.managers.models.net_l3vpn:Provider +neutron.core_plugins = + gluon = gluon.plugin.core:GluonPlugin + [upload_sphinx] upload-dir = doc/build/html