summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nova/objects/service.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/objects/service.py b/nova/objects/service.py
index 05aeb1b538..71361e0168 100644
--- a/nova/objects/service.py
+++ b/nova/objects/service.py
@@ -230,11 +230,12 @@ SERVICE_VERSION_HISTORY = (
# 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 to point to
# the smallest service version that was added in N-1.
-OLDEST_SUPPORTED_SERVICE_VERSION = 'Xena'
+OLDEST_SUPPORTED_SERVICE_VERSION = 'Yoga'
SERVICE_VERSION_ALIASES = {
'Victoria': 52,
'Wallaby': 54,
'Xena': 57,
+ 'Yoga': 61,
}