summaryrefslogtreecommitdiff
path: root/nova/objects/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/objects/service.py')
-rw-r--r--nova/objects/service.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/nova/objects/service.py b/nova/objects/service.py
index 4ea69d2814..a3d998b808 100644
--- a/nova/objects/service.py
+++ b/nova/objects/service.py
@@ -30,7 +30,7 @@ LOG = logging.getLogger(__name__)
# NOTE(danms): This is the global service version counter
-SERVICE_VERSION = 14
+SERVICE_VERSION = 15
# NOTE(danms): This is our SERVICE_VERSION history. The idea is that any
@@ -89,6 +89,9 @@ SERVICE_VERSION_HISTORY = (
{'compute_rpc': '4.13'},
# Version 14: The compute manager supports setting device tags.
{'compute_rpc': '4.13'},
+ # Version 15: Indicate that nova-conductor will stop a boot if BuildRequest
+ # is deleted before RPC to nova-compute.
+ {'compute_rpc': '4.13'},
)