From: Assaf Muller Date: Mon, 4 Jan 2016 17:37:01 +0000 (-0500) Subject: Remove L2populationDbMixin parent X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=251847bfcd9eca951083aa22049aedef651d5bd8;p=openstack-build%2Fneutron-build.git Remove L2populationDbMixin parent Change-Id: I429f5dcd2327dacf9cc6eb7754696bd4bdc8ea1f --- diff --git a/neutron/plugins/ml2/drivers/l2pop/db.py b/neutron/plugins/ml2/drivers/l2pop/db.py index 822e9da02..f0f8060c8 100644 --- a/neutron/plugins/ml2/drivers/l2pop/db.py +++ b/neutron/plugins/ml2/drivers/l2pop/db.py @@ -18,12 +18,11 @@ from oslo_utils import timeutils from neutron.common import constants as const from neutron.db import agents_db -from neutron.db import common_db_mixin as base_db from neutron.db import models_v2 from neutron.plugins.ml2 import models as ml2_models -class L2populationDbMixin(base_db.CommonDbMixin): +class L2populationDbMixin(object): def get_agent_ip_by_host(self, session, agent_host): agent = self.get_agent_by_host(session, agent_host)