From 38c0da18ce71695b9dfcb096debe9f3f7ce7feb2 Mon Sep 17 00:00:00 2001 From: skanthed Date: Mon, 16 Dec 2024 08:58:43 -0500 Subject: [PATCH] Fix microversion compatibility issue for OpenStack Baremetal API --- esiclient/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esiclient/plugin.py b/esiclient/plugin.py index 8d40f67..ff28965 100644 --- a/esiclient/plugin.py +++ b/esiclient/plugin.py @@ -18,7 +18,7 @@ LOG = logging.getLogger(__name__) -DEFAULT_BAREMETAL_API_VERSION = '1.69' +DEFAULT_BAREMETAL_API_VERSION = os.getenv('OS_BAREMETAL_API_VERSION', '1.72') DEFAULT_ESICLIENT_API_VERSION = '1' # Required by the OSC plugin interface