Files
group-based-policy/gbpservice/neutron/plugins/ml2plus/patch_neutron.py
Thomas Bachman 07488e6940 Revert "Remove get_current_session method"
This reverts commit e5c5bbfc3a.

Change-Id: I2add1bb19bee4133217991b5ff5d5f72add11b8d
2020-08-04 18:04:33 +00:00

71 lines
1.9 KiB
Python

# Copyright (c) 2016 Cisco Systems 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.api import extensions
from gbpservice.neutron.plugins.ml2plus import extension_overrides
# Monkeypatch Neutron to allow overriding its own extension
# descriptors. Note that extension descriptor classes cannot be
# monkeypatched directly because they are loaded explicitly by file
# name and then used immediately.
_real_get_extensions_path = extensions.get_extensions_path
def get_extensions_path(service_plugins=None):
path = _real_get_extensions_path(service_plugins)
return extension_overrides.__path__[0] + ':' + path
extensions.get_extensions_path = get_extensions_path
from gbpservice.common import utils as gbp_utils
def get_current_session():
return gbp_utils.get_current_session()
from neutron_lib import context as nlib_ctx
orig_get_admin_context = nlib_ctx.get_admin_context
def new_get_admin_context():
current_context = gbp_utils.get_current_context()
if not current_context:
return orig_get_admin_context()
else:
return current_context.elevated()
nlib_ctx.get_admin_context = new_get_admin_context
from oslo_db.sqlalchemy import exc_filters
exc_filters.LOG.exception = exc_filters.LOG.debug
from neutron.db import db_base_plugin_v2
DEVICE_OWNER_SVI_PORT = 'apic:svi'
db_base_plugin_v2.AUTO_DELETE_PORT_OWNERS.append(DEVICE_OWNER_SVI_PORT)