Commit f9b30c6d authored by Kamil Trzciński's avatar Kamil Trzciński

Merge branch 'rc/backport-workhorse-send_artifacts_entry-signature-from-ee' into 'master'

Backport the EE signature of Gitlab::Workhorse#send_artifacts_entry

See merge request !14144
parents 7baa7749 572e9012
......@@ -121,10 +121,10 @@ module Gitlab
]
end
def send_artifacts_entry(build, path)
def send_artifacts_entry(build, entry)
params = {
'Archive' => build.artifacts_file.path,
'Entry' => Base64.encode64(path.to_s)
'Entry' => Base64.encode64(entry.to_s)
}
[
......
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