From 07a9db5f741fdcdb4eedfd702434b35539e18c47 Mon Sep 17 00:00:00 2001 From: Balazs Gibizer Date: Mon, 22 Mar 2021 11:09:47 +0100 Subject: [PATCH] Update min supported service version for Xena. Nova only supports compute services that are not older than version N-1. So in Xena the smallest supported nova compute version is Wallaby and the smallest Wallaby service version is 54. Change-Id: I58cbac1ff087f7fd465997d06c2db7079086eb82 --- nova/objects/service.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nova/objects/service.py b/nova/objects/service.py index 46bfbb93a83..f51b3a96f4b 100644 --- a/nova/objects/service.py +++ b/nova/objects/service.py @@ -202,10 +202,12 @@ ) # This is used to raise an error at service startup if older than N-1 computes -# are detected. Update this at the beginning of every release cycle -OLDEST_SUPPORTED_SERVICE_VERSION = 'Victoria' +# are detected. Update this at the beginning of every release cycle to point to +# the smallest service version that was added in N-1. +OLDEST_SUPPORTED_SERVICE_VERSION = 'Wallaby' SERVICE_VERSION_ALIASES = { 'Victoria': 52, + 'Wallaby': 54, }