Merge branch 'workhorse-1.4.3' into 'master'

Workhorse 1.4.3

Closes gitaly#167 and gitaly#177

See merge request !10479
This commit is contained in:
Sean McGivern 2017-04-05 21:33:35 +00:00
commit 78a844217e
3 changed files with 3 additions and 10 deletions

View File

@ -1 +1 @@
1.4.2
1.4.3

View File

@ -45,12 +45,7 @@ module Gitlab
raise "Unsupported action: #{action}"
end
if feature_enabled
params[:GitalyAddress] = address
# TODO deprecate GitalySocketPath once GITLAB_WORKHORSE_VERSION points
# to a version that supports GitalyAddress.
params[:GitalySocketPath] = URI(address).path
end
params[:GitalyAddress] = address if feature_enabled
end
params

View File

@ -188,10 +188,8 @@ describe Gitlab::Workhorse, lib: true do
context 'when Gitaly is enabled' do
let(:gitaly_params) do
address = Gitlab::GitalyClient.get_address('default')
{
GitalySocketPath: URI(address).path,
GitalyAddress: address,
GitalyAddress: Gitlab::GitalyClient.get_address('default'),
}
end