From 6931d468b3eab35a19c20dff9a30e81ac8c02db5 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Fernandez Date: Wed, 25 Mar 2026 09:21:57 +0100 Subject: [PATCH 1/2] Document verify_ssl option for VSphere Add verify_ssl option to bypass SSL verification. --- CHANGES.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 69e838ca8e..0fd3472ce8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,12 @@ Changes in Apache Libcloud 3.9.1 Compute ~~~~~~~ +- [VSphere] Add verify_ssl option + + Add verify_ssl option, to enable the user to avoid SSL verification explicitly. + (#2128) + [Miguel Caballer - @micafer] + - [OpenStack] Initial Blazar support This is an initial implementation of Blazar support in Libcloud. It currently From 50799aacd10887765d365f2172653ef0383bd502 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Fernandez Date: Wed, 25 Mar 2026 09:39:52 +0100 Subject: [PATCH 2/2] Increase cumulative import time limit to 1 second --- scripts/time_imports.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/time_imports.sh b/scripts/time_imports.sh index f306989dfc..05cb34dc9a 100755 --- a/scripts/time_imports.sh +++ b/scripts/time_imports.sh @@ -18,7 +18,7 @@ set -e # Script which fails if any of the import takes more than threshold ms -LIBCLOUD_CUMULATIVE_IMPORT_TIME_LIMIT_US=800000 +LIBCLOUD_CUMULATIVE_IMPORT_TIME_LIMIT_US=1000000 EC2_DRIVER_CUMULATIVE_IMPORT_TIME_LIMIT_US=560000 # Clean up any cached files to ensure consistent and clean environment