Embrane Plugin fails alembic migrations
Alembic migration from revision f44ab9871cd6 to 2eeaf963a447 is failing on Embrane Plugin because the floatingips table doesn't exist. The problem happens because the plugin is actually inheriting from OVS's Plugin, and therefore it doesn't take part of the correct migration path at installation time. As far as I have investigated, adding the support on ext_gw_mode and l3_support is enough to solve the problem. Change-Id: Ide740df34d06d87fab50cf6468c5d753cb46f112 Closes-bug: 1287330
This commit is contained in:
parent
6999fcb93d
commit
f60a89ca21
@ -40,7 +40,8 @@ migration_for_plugins = [
|
||||
'neutron.plugins.openvswitch.ovs_neutron_plugin.OVSNeutronPluginV2',
|
||||
'neutron.plugins.ryu.ryu_neutron_plugin.RyuNeutronPluginV2',
|
||||
'neutron.plugins.vmware.plugin.NsxPlugin',
|
||||
'neutron.plugins.vmware.plugin.NsxServicePlugin'
|
||||
'neutron.plugins.vmware.plugin.NsxServicePlugin',
|
||||
'neutron.plugins.embrane.plugins.embrane_ovs_plugin.EmbraneOvsPlugin'
|
||||
]
|
||||
|
||||
from alembic import op
|
||||
|
@ -37,6 +37,7 @@ migration_for_plugins = [
|
||||
'neutron.plugins.nicira.NeutronServicePlugin.NvpAdvancedPlugin',
|
||||
'neutron.plugins.vmware.plugin.NsxPlugin',
|
||||
'neutron.plugins.vmware.plugin.NsxServicePlugin',
|
||||
'neutron.plugins.embrane.plugins.embrane_ovs_plugin.EmbraneOvsPlugin'
|
||||
]
|
||||
|
||||
from neutron.db import migration
|
||||
|
Loading…
Reference in New Issue
Block a user