706a24e298
As discussed at the Epoxy PTG meeting, run an automated upgrade tool to make code python 3.9+ compliant. This patch is for code (non-tests). Result of running: $ pyupgrade --py39-plus $(git ls-files | grep ".py$") Fixed PEP8 errors introduced by pyupgrade by running: $ autopep8 --select=E127,E128,E501 --max-line-length 79 -r \ --in-place neutron Also did manual updates as necessary to fix other errors and warnings after above commands. Inspired by Octavia and Nova [0]. [0] https://review.opendev.org/c/openstack/nova/+/896986 Change-Id: Ife79df75dd2c9c42d4de36edef1d29b98f5d85da
46 lines
2.0 KiB
Python
46 lines
2.0 KiB
Python
# Copyright (c) 2015 OpenStack Foundation.
|
|
# 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.
|
|
|
|
import abc
|
|
|
|
from neutron_lib.db import api as db_api
|
|
from oslo_db import exception as db_exc
|
|
|
|
from neutron.common import utils as n_utils
|
|
|
|
|
|
class BaseResourceFilter(metaclass=abc.ABCMeta):
|
|
"""Encapsulate logic that is specific to the resource type."""
|
|
@abc.abstractmethod
|
|
def filter_agents(self, plugin, context, resource):
|
|
"""Return the agents that can host the resource."""
|
|
|
|
@n_utils.skip_exceptions(db_exc.DBError)
|
|
def bind(self, context, agents, resource_id, force_scheduling=False):
|
|
"""Bind the resource to the agents."""
|
|
with db_api.CONTEXT_WRITER.using(context):
|
|
for agent in agents:
|
|
# Load is being incremented here to reflect latest agent load
|
|
# even within the agent report interval. This will be very
|
|
# much necessary when bulk resource creation happens within a
|
|
# agent report interval time.
|
|
# NOTE: The resource being bound might or might not be of the
|
|
# same type which is accounted for the load. It isn't a
|
|
# problem because "+ 1" here does not meant to predict
|
|
# precisely what the load of the agent will be. The value will
|
|
# be corrected by the agent on the next report interval.
|
|
agent.load += 1
|
|
agent.update()
|