Commit 5077079f authored by Jacob Vosmaer's avatar Jacob Vosmaer

Remove deprecated field from workhorse response

parent 90e0b2df
......@@ -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
......
......@@ -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
......
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