Remove the deprecation warning of neutron.db.l3_db

These two deprecation warning can be observed, when run UT for
test_l3_router_plugin

DeprecationWarning: neutron.db.l3_db.Router: moved to
neutron.db.models.l3.Router
DeprecationWarning: neutron.db.l3_db.FloatingIP: moved to
neutron.db.models.l3.FloatingIP

Change-Id: I9aeda537aea405e86dfcbda2e0245be8ca151b8c
This commit is contained in:
Hong Hui Xiao 2016-09-30 18:51:48 +08:00
parent cd5fa434fd
commit e14002df6d
1 changed files with 1 additions and 1 deletions

View File

@ -31,8 +31,8 @@ from neutron.db import common_db_mixin
from neutron.db import db_base_plugin_v2
from neutron.db import extraroute_db
from neutron.db import l3_agentschedulers_db
from neutron.db import l3_db
from neutron.db import l3_gwmode_db
from neutron.db.models import l3 as l3_db
from neutron.plugins.common import constants
from neutron.quota import resource_registry
from neutron.services import service_base