Ensure Azure-related gems are loaded
We attempted to load the gitlab-fog-azure-rm only if it was really needed for object storage, but there are a number of cases where we don't dynamically load these gems when we need them. To avoid the complexity of this dynamic allocation, we now require the gem, just as we do with other object storage providers. Unfortunately this adds 5 MB to the RAM usage of the process according to derailed_benchmarks, but this fairly typical for a gem for object storage. Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/334853 Changelog: fixed
Showing
... | ... | @@ -129,7 +129,7 @@ gem 'fog-local', '~> 0.6' |
gem 'fog-openstack', '~> 1.0' | ||
gem 'fog-rackspace', '~> 0.1.1' | ||
gem 'fog-aliyun', '~> 0.3' | ||
gem 'gitlab-fog-azure-rm', '~> 1.2.0', require: false | ||
gem 'gitlab-fog-azure-rm', '~> 1.2.0', require: 'fog/azurerm' | ||
# for Google storage | ||
gem 'google-api-client', '~> 0.33' | ||
... | ... |
Please register or sign in to comment