From 568577bc009a1803cca77b4bb02ccb4dbcd2f35c Mon Sep 17 00:00:00 2001 From: Armando Migliaccio Date: Wed, 11 Jan 2012 18:11:48 +0000 Subject: Bug #914907: register_models in db/sqlalchemy/models.py references non-existent ExportDevice Remove ExportDevice from register_models as this no longer exists. Change-Id: I68555eb33e035fa3669e4ac4b77cb2c0598cf52c --- nova/db/sqlalchemy/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/db/sqlalchemy/models.py b/nova/db/sqlalchemy/models.py index fad41334e..ad4aa3661 100644 --- a/nova/db/sqlalchemy/models.py +++ b/nova/db/sqlalchemy/models.py @@ -934,7 +934,7 @@ def register_models(): """ from sqlalchemy import create_engine models = (Service, Instance, InstanceActions, InstanceTypes, - Volume, ExportDevice, IscsiTarget, FixedIp, FloatingIp, + Volume, IscsiTarget, FixedIp, FloatingIp, Network, SecurityGroup, SecurityGroupIngressRule, SecurityGroupInstanceAssociation, AuthToken, User, Project, Certificate, ConsolePool, Console, Zone, -- cgit