From 822cac911ba2a266d49f1ab3a7f9ef5772be5fdf 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bundler.d/vmware.rb b/bundler.d/vmware.rb index 5e032a2ffef..503d6ddd3f7 100644 --- a/bundler.d/vmware.rb +++ b/bundler.d/vmware.rb @@ -1,3 +1,4 @@ group :vmware do - gem 'fog-vsphere', '>= 3.6.0', '< 4.0' + # With 3.6.1 test/controllers/api/v2/hosts_controller_test is failing + gem 'fog-vsphere', '~> 3.6', '!= 3.6.1' end