Skip to content

Commit ad227d7

Browse files
committed
Update min supported service version for Yoga
Nova only supports compute services that are not older than version N-1. So in Yoga the smallest supported nova compute version is Xena and the smallest Xena service version is 57. Change-Id: I709b3967c9e6e390016c003f9e5b33ae55708d28 Signed-off-by: Takashi Natsume <[email protected]>
1 parent 7967ad7 commit ad227d7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nova/objects/service.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,11 @@
218218
# This is used to raise an error at service startup if older than N-1 computes
219219
# are detected. Update this at the beginning of every release cycle to point to
220220
# the smallest service version that was added in N-1.
221-
OLDEST_SUPPORTED_SERVICE_VERSION = 'Wallaby'
221+
OLDEST_SUPPORTED_SERVICE_VERSION = 'Xena'
222222
SERVICE_VERSION_ALIASES = {
223223
'Victoria': 52,
224224
'Wallaby': 54,
225+
'Xena': 57,
225226
}
226227

227228

0 commit comments

Comments
 (0)