NSX|V3: Remove unused QoS message queue

Its not used by the driver, and not supported by neutron any more

Change-Id: I66d2cc021f4e48f7a75d4222b176d0a45b4bf351
This commit is contained in:
asarfaty 2020-10-01 10:27:20 +02:00
parent 26f855f9c9
commit 0b6c219307
2 changed files with 0 additions and 29 deletions

View File

@ -44,8 +44,6 @@ neutron.service_plugins =
vmware_nsxtvd_qos = vmware_nsx.services.qos.nsx_tvd.plugin:QoSPlugin
vmware_nsxtvd_vpnaas = vmware_nsx.services.vpnaas.nsx_tvd.plugin:VPNPlugin
vmware_nsx_vpnaas = vmware_nsx.services.vpnaas.nsx_plugin:NsxVPNPlugin
neutron.qos.notification_drivers =
vmware_nsxv3_message_queue = vmware_nsx.services.qos.nsx_v3.message_queue:NsxV3QosNotificationDriver
neutron.ipam_drivers =
vmware_nsxv_ipam = vmware_nsx.services.ipam.nsx_v.driver:NsxvIpamDriver
vmware_nsxv3_ipam = vmware_nsx.services.ipam.nsx_v3.driver:Nsxv3IpamDriver

View File

@ -1,27 +0,0 @@
# Copyright 2016 VMware, Inc.
#
# All Rights Reserved
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from neutron.services.qos.notification_drivers import message_queue
class NsxV3QosNotificationDriver(
message_queue.RpcQosServiceNotificationDriver):
"""NSXv3 message queue service notification driver for QoS.
Overriding the create_policy method in order to add a notification
message in this case too.
"""
# The message queue is no longer needed in Pike.
# Keeping this class for a while for existing configurations.