From 2a83043bcb529dd6df00bd92f8ab17e0f7533fcb Mon Sep 17 00:00:00 2001 From: Sylvain Bauza Date: Thu, 21 Mar 2024 11:17:41 +0100 Subject: [PATCH] Update min support for Dalmatian Now that master is on Dalmatian, which is a non-SLURP release, we need to bump our minimum supported version to the previous SLURP release, which is now Caracal (and no longer Antelope). Change-Id: I9d5150be2c131899fa2281a971bca965b8fff0b0 --- nova/objects/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/objects/service.py b/nova/objects/service.py index e23156c958c9..383d1c84b2de 100644 --- a/nova/objects/service.py +++ b/nova/objects/service.py @@ -253,7 +253,7 @@ NODE_IDENTITY_VERSION = 65 # and value be the latest service version that the release supports (for # example, before Bobcat RC1, please add 'Bobcat': XX where X is the latest # servion version that was added) -OLDEST_SUPPORTED_SERVICE_VERSION = 'Antelope' +OLDEST_SUPPORTED_SERVICE_VERSION = 'Caracal' SERVICE_VERSION_ALIASES = { 'Victoria': 52, 'Wallaby': 54,