2402145713
As a followup from the previous commit we here now also cleanup the SubPort an Trunk fanout queues. Closes-Bug: #1586731 Change-Id: I047603b647dec7787c2471d9edb70fa4ec599a2a
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
# Copyright 2016 Hewlett Packard Enterprise Development LP
|
|
#
|
|
# 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_lib import constants
|
|
|
|
from neutron.plugins.ml2.drivers.agent import capabilities
|
|
from neutron.services.trunk.drivers.openvswitch.agent import driver
|
|
|
|
|
|
def register():
|
|
"""Register OVS capabilities."""
|
|
# Add capabilities to be loaded during agent initialization
|
|
capabilities.register(driver.init_handler, constants.AGENT_TYPE_OVS)
|
|
|
|
|
|
def unregister():
|
|
"""Unregister OVS capabilities."""
|
|
# To cleanup oslo.messaging queues
|
|
driver.unregister()
|