summaryrefslogtreecommitdiff
path: root/config/initializers/artifacts_direct_upload_support.rb
blob: d2bc35ea61306bb50dafa5c7b54126beebcbefec (plain)
1
2
3
4
5
6
7
artifacts_object_store = Gitlab.config.artifacts.object_store

if artifacts_object_store.enabled &&
    artifacts_object_store.direct_upload &&
    artifacts_object_store.connection&.provider.to_s != 'Google'
  raise "Only 'Google' is supported as a object storage provider when 'direct_upload' of artifacts is used"
end