Skip to content

Commit a173192

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

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
@@ -230,11 +230,12 @@
230230
# This is used to raise an error at service startup if older than N-1 computes
231231
# are detected. Update this at the beginning of every release cycle to point to
232232
# the smallest service version that was added in N-1.
233-
OLDEST_SUPPORTED_SERVICE_VERSION = 'Xena'
233+
OLDEST_SUPPORTED_SERVICE_VERSION = 'Yoga'
234234
SERVICE_VERSION_ALIASES = {
235235
'Victoria': 52,
236236
'Wallaby': 54,
237237
'Xena': 57,
238+
'Yoga': 61,
238239
}
239240

240241

0 commit comments

Comments
 (0)