From ad3ed220e53dd7ad1ec7513193004191da99f8df Mon Sep 17 00:00:00 2001 From: Sam Morrison Date: Mon, 22 Oct 2018 15:15:49 +1100 Subject: [PATCH] Fix up compute rpcapi version for pike release This was wrongly set to 4.18 when pike only supports 4.17 Change-Id: Ic16f30a15fe072eb0619e64575897ed69b9eb947 Closes-Bug: #1799113 (cherry picked from commit 10d64b2c62c54f243e6fb05bc9c7b027d433aae1) --- nova/compute/rpcapi.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nova/compute/rpcapi.py b/nova/compute/rpcapi.py index 685b42b0c199..ba507b3dd712 100644 --- a/nova/compute/rpcapi.py +++ b/nova/compute/rpcapi.py @@ -327,12 +327,12 @@ class ComputeAPI(object): * 4.15 - Add tag argument to reserve_block_device_name() * 4.16 - Add tag argument to attach_interface() * 4.17 - Add new_attachment_id to swap_volume. - * 4.18 - Add migration to prep_resize() - ... Pike supports messaging version 4.18. So any changes to existing + ... Pike supports messaging version 4.17. So any changes to existing methods in 4.x after that point should be done so that they can handle - the version_cap being set to 4.18. + the version_cap being set to 4.17. + * 4.18 - Add migration to prep_resize() * 4.19 - build_and_run_instance() now gets a 'host_list' parameter representing potential alternate hosts for retries within a cell. @@ -357,7 +357,7 @@ class ComputeAPI(object): 'mitaka': '4.11', 'newton': '4.13', 'ocata': '4.13', - 'pike': '4.18', + 'pike': '4.17', 'queens': '5.0', }