Commit f68011c2 authored by Robert Speicher's avatar Robert Speicher

Merge branch 'sh-fix-meltano-upload' into 'master'

Allow Pseudonymizer to write to a bucket without having permissions to see all buckets

See merge request gitlab-org/gitlab-ee!6682
parents 4b3de8fc fbe87c9c
---
title: Allow Pseudonymizer to write to a bucket without having permissions to see
all buckets
merge_request: 6682
author:
type: fixed
......@@ -84,7 +84,7 @@ module Pseudonymizer
if connection.service == ::Fog::Storage::Local
connection.directories.create(key: @remote_dir)
else
connection.directories.get(@remote_dir)
connection.directories.new(key: @remote_dir)
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment