Merge "Fix create_server_group in compute noop" into stable/wallaby

This commit is contained in:
Zuul
2023-10-17 17:45:32 +00:00
committed by Gerrit Code Review

View File

@@ -12,6 +12,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from collections import namedtuple
from oslo_log import log as logging
from oslo_utils import uuidutils
@@ -23,6 +25,9 @@ from octavia.network import data_models as network_models
LOG = logging.getLogger(__name__)
NoopServerGroup = namedtuple('ServerGroup', ['id'])
class NoopManager(object):
def __init__(self):
super().__init__()
@@ -76,6 +81,7 @@ class NoopManager(object):
LOG.debug("Create Server Group %s no-op, name %s, policy %s ",
self.__class__.__name__, name, policy)
self.computeconfig[(name, policy)] = (name, policy, 'create')
return NoopServerGroup(id=uuidutils.generate_uuid())
def delete_server_group(self, server_group_id):
LOG.debug("Delete Server Group %s no-op, id %s ",