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
63 lines
1.9 KiB
Python
63 lines
1.9 KiB
Python
# Copyright 2015 Cloudbase Solutions.
|
|
# 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.
|
|
|
|
|
|
class BasePollingManager:
|
|
|
|
def __init__(self):
|
|
self._force_polling = False
|
|
self._polling_completed = True
|
|
|
|
def force_polling(self):
|
|
self._force_polling = True
|
|
|
|
def polling_completed(self):
|
|
self._polling_completed = True
|
|
|
|
def _is_polling_required(self):
|
|
raise NotImplementedError()
|
|
|
|
@property
|
|
def is_polling_required(self):
|
|
# Always consume the updates to minimize polling.
|
|
polling_required = self._is_polling_required()
|
|
|
|
# Polling is required regardless of whether updates have been
|
|
# detected.
|
|
if self._force_polling:
|
|
self._force_polling = False
|
|
polling_required = True
|
|
|
|
# Polling is required if not yet done for previously detected
|
|
# updates.
|
|
if not self._polling_completed:
|
|
polling_required = True
|
|
|
|
if polling_required:
|
|
# Track whether polling has been completed to ensure that
|
|
# polling can be required until the caller indicates via a
|
|
# call to polling_completed() that polling has been
|
|
# successfully performed.
|
|
self._polling_completed = False
|
|
|
|
return polling_required
|
|
|
|
|
|
class AlwaysPoll(BasePollingManager):
|
|
|
|
@property
|
|
def is_polling_required(self):
|
|
return True
|