From 32eefcfc60977e556bdee7a471fbf70760fbb9d4 Mon Sep 17 00:00:00 2001 From: Boden R Date: Tue, 25 Jul 2017 15:41:03 -0600 Subject: [PATCH] use qos DriverBase from neutron-lib neutron-lib contains the QoS DriverBase class and neutron is moving to it in Ic8027b73f82d691bd3c465061a4c8d8301288b07. This patch updates reference of such to also use neutron-lib. Change-Id: I05d2432540882b77ff128ddd52d365559ff4fa24 --- vmware_nsx/services/qos/nsx_v/driver.py | 2 +- vmware_nsx/services/qos/nsx_v3/driver.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vmware_nsx/services/qos/nsx_v/driver.py b/vmware_nsx/services/qos/nsx_v/driver.py index ae03c684ea..67a9709b3e 100644 --- a/vmware_nsx/services/qos/nsx_v/driver.py +++ b/vmware_nsx/services/qos/nsx_v/driver.py @@ -14,10 +14,10 @@ # License for the specific language governing permissions and limitations # under the License. +from neutron_lib.services.qos import base from oslo_log import log as logging from neutron.common import constants as n_consts -from neutron.services.qos.drivers import base from neutron.services.qos import qos_consts LOG = logging.getLogger(__name__) diff --git a/vmware_nsx/services/qos/nsx_v3/driver.py b/vmware_nsx/services/qos/nsx_v3/driver.py index 5ec6c5393e..2e724e54b3 100644 --- a/vmware_nsx/services/qos/nsx_v3/driver.py +++ b/vmware_nsx/services/qos/nsx_v3/driver.py @@ -14,10 +14,10 @@ # License for the specific language governing permissions and limitations # under the License. +from neutron_lib.services.qos import base from oslo_log import log as logging from neutron.common import constants as n_consts -from neutron.services.qos.drivers import base from neutron.services.qos import qos_consts from vmware_nsx.services.qos.nsx_v3 import utils as qos_utils