From 2dd0a22fd6cc38cc27942572c8a19bf6a52fb32b Mon Sep 17 00:00:00 2001 From: Kevin Benton Date: Thu, 10 Jul 2014 12:18:54 -0700 Subject: [PATCH] Add BSN plugin to agent migration script Adds the Big Switch plugin to the migration script that creates the agents table. A recent commit (d3be7b040eaa61a4d0ac617026cf5c9132d3831e) added it to the agent tables but it missed this one so an error was thrown during migration when it reached a table that depended on the agents table. Closes-Bug: #1340405 Change-Id: I90a164a1b632c3794a7f7607f3f1da8f7d7b15db --- .../versions/511471cc46b_agent_ext_model_supp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/neutron/db/migration/alembic_migrations/versions/511471cc46b_agent_ext_model_supp.py b/neutron/db/migration/alembic_migrations/versions/511471cc46b_agent_ext_model_supp.py index 8806e242b..488e30731 100644 --- a/neutron/db/migration/alembic_migrations/versions/511471cc46b_agent_ext_model_supp.py +++ b/neutron/db/migration/alembic_migrations/versions/511471cc46b_agent_ext_model_supp.py @@ -41,6 +41,7 @@ migration_for_plugins = [ 'neutron.plugins.oneconvergence.plugin.OneConvergencePluginV2', 'neutron.plugins.mlnx.mlnx_plugin.MellanoxEswitchPlugin', 'neutron.plugins.ml2.plugin.Ml2Plugin', + 'neutron.plugins.bigswitch.plugin.NeutronRestProxyV2', ] from alembic import op -- 2.45.2