stop using common db mixin

All of the methods of common db mixin are available via neutron-lib
and the mixin will be removed before long.
This patch switches the code over to use neutron-lib's APIs rather
than those of the mixin and stops using common_db_mix for parent
classes.

Change-Id: I13e88997f6043162c5feeaa339820f4efa37ee03
This commit is contained in:
Boden R 2019-02-11 08:30:09 -07:00
parent 8976a2cf9e
commit 5bb32a58ae
1 changed files with 0 additions and 2 deletions

View File

@ -17,7 +17,6 @@
import netaddr
from neutron.api.rpc.agentnotifiers import l3_rpc_agent_api
from neutron.api.rpc.handlers import l3_rpc
from neutron.db import common_db_mixin
from neutron.db import extraroute_db
from neutron.db import l3_agentschedulers_db
from neutron.db import l3_attrs_db
@ -50,7 +49,6 @@ LOG = log.getLogger(__name__)
class DFL3AgentlessRouterPlugin(service_base.ServicePluginBase,
common_db_mixin.CommonDbMixin,
extraroute_db.ExtraRoute_dbonly_mixin,
l3_gwmode_db.L3_NAT_db_mixin,
l3_attrs_db.ExtraAttributesMixin,