From 5448b6ac95051c8d90581ea4c8395ad9586454ca Mon Sep 17 00:00:00 2001 From: Leos Stejskal Date: Tue, 27 Jun 2023 10:25:01 +0200 Subject: [PATCH] Fixes #36535 - Pin fog-vsphere to 3.6.0 fog-vsphere 3.6.1 [0] is causing failures in the test/controllers/api/v2/hosts_controller_test. The temporary fix is to pin the version to 3.6.0. [0] https://github.com/fog/fog-vsphere/pull/285 --- bundler.d/vmware.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bundler.d/vmware.rb b/bundler.d/vmware.rb index 5e032a2ffef4..40d317fdf836 100644 --- a/bundler.d/vmware.rb +++ b/bundler.d/vmware.rb @@ -1,3 +1,5 @@ group :vmware do - gem 'fog-vsphere', '>= 3.6.0', '< 4.0' + # Temp pin to 3.6.0 because with 3.6.1 + # test test/controllers/api/v2/hosts_controller_test is failing + gem 'fog-vsphere', '3.6.0' end