From c68d4c45d6c56da768368e82310172a25202ae7c Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Mon, 5 Sep 2016 01:24:52 -0700 Subject: [PATCH] QOS-DB: remove deprecation warning Commit 60325f4ae9ec53734d792d111cbcf24270d57417 used the depracted models_v2.HasId. Change-Id: I69dcaf740a782a370923e0022607518358456503 Closes-bug: #1620220 --- neutron/db/qos/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/db/qos/models.py b/neutron/db/qos/models.py index 964462206d4..b5ebfa94983 100644 --- a/neutron/db/qos/models.py +++ b/neutron/db/qos/models.py @@ -95,7 +95,7 @@ class QosDscpMarkingRule(model_base.HasId, model_base.BASEV2): qos_policy = sa.orm.relationship(QosPolicy) -class QosMinimumBandwidthRule(models_v2.HasId, model_base.BASEV2): +class QosMinimumBandwidthRule(model_base.HasId, model_base.BASEV2): __tablename__ = 'qos_minimum_bandwidth_rules' qos_policy_id = sa.Column(sa.String(36), sa.ForeignKey('qos_policies.id',