From 251847bfcd9eca951083aa22049aedef651d5bd8 Mon Sep 17 00:00:00 2001 From: Assaf Muller Date: Mon, 4 Jan 2016 12:37:01 -0500 Subject: [PATCH] Remove L2populationDbMixin parent Change-Id: I429f5dcd2327dacf9cc6eb7754696bd4bdc8ea1f --- neutron/plugins/ml2/drivers/l2pop/db.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/neutron/plugins/ml2/drivers/l2pop/db.py b/neutron/plugins/ml2/drivers/l2pop/db.py index 822e9da0243..f0f8060c886 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)