From 9ec22dad23bfb4b3c77d5949b64bb7733aa959fd Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Wed, 25 Oct 2023 14:41:53 -0400 Subject: [PATCH] Use forked fog-google for pagination fixes Fog-google has a number of models which do not use pagination arbitrarily limiting the maximum number of results to 500. The fix has not been merged upstream yet so we have to fork the gem to apply the fix. --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 38bb0cf5b0c..4b4224f0371 100644 --- a/Gemfile +++ b/Gemfile @@ -88,6 +88,7 @@ gem "mime-types", "~>3.0", :require => false, # Modified gems (forked on Github) gem "handsoap", "=0.2.5.5", :require => false, :source => "https://rubygems.manageiq.org" # for manageiq-gems-pending only +gem "fog-google", "=1.22.0.1", :require => false, :source => "https://rubygems.manageiq.org" # for manageiq-providers-google # In 1.9.3: Time.parse uses british version dd/mm/yyyy instead of american version mm/dd/yyyy # american_date fixes this to be compatible with 1.8.7 until all callers can be converted to the 1.9.3 format prior to parsing.