Set correct plugin support in Embrane based plugins

Change-Id: I87480415f55894e17458a85ef7918babaceb5e47
Closes-Bug: 1236627
This commit is contained in:
Ivar Lazzaro 2013-10-07 17:12:11 -07:00
parent 8640b3e432
commit 15103e5844
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ from neutron.plugins.embrane.l2base.fake import fakeplugin_support as sup
class EmbraneFakePlugin(base.EmbranePlugin, extraroute_db.ExtraRoute_db_mixin, class EmbraneFakePlugin(base.EmbranePlugin, extraroute_db.ExtraRoute_db_mixin,
l2.FakeL2Plugin): l2.FakeL2Plugin):
_plugin_support = sup.FakePluginSupport _plugin_support = sup.FakePluginSupport()
def __init__(self): def __init__(self):
'''First run plugin specific initialization, then Embrane's.''' '''First run plugin specific initialization, then Embrane's.'''

View File

@ -29,7 +29,7 @@ class EmbraneOvsPlugin(base.EmbranePlugin, l2.OVSNeutronPluginV2):
and the base EmbranePlugin for L3. and the base EmbranePlugin for L3.
''' '''
_plugin_support = openvswitch_support.OpenvswitchSupport _plugin_support = openvswitch_support.OpenvswitchSupport()
def __init__(self): def __init__(self):
'''First run plugin specific initialization, then Embrane's.''' '''First run plugin specific initialization, then Embrane's.'''