diff options
author | Nick Thomas <nick@gitlab.com> | 2019-01-25 16:06:55 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2019-01-25 16:06:55 +0000 |
commit | 2b8f19435bd81b24f512236245445109c14a2297 (patch) | |
tree | 5380acd4f4c798a513dc70d2f769dc1aedc450f3 | |
parent | 51441b97abdec1c37c96173b08c7b527f342b80f (diff) | |
parent | e3cacb95a85080c9bd8993b26e996d952fbab05f (diff) | |
download | gitlab-ce-2b8f19435bd81b24f512236245445109c14a2297.tar.gz |
Merge branch 'elasticsearch-via-gitaly-ee' into 'master'
Add connection_data method to Gitaly client
See merge request gitlab-org/gitlab-ce!24669
-rw-r--r-- | lib/gitlab/gitaly_client.rb | 6 | ||||
-rw-r--r-- | spec/lib/gitlab/gitaly_client_spec.rb | 9 |
2 files changed, 14 insertions, 1 deletions
diff --git a/lib/gitlab/gitaly_client.rb b/lib/gitlab/gitaly_client.rb index 85afbd85fe6..0ab53f8f706 100644 --- a/lib/gitlab/gitaly_client.rb +++ b/lib/gitlab/gitaly_client.rb @@ -133,7 +133,11 @@ module Gitlab end def self.address_metadata(storage) - Base64.strict_encode64(JSON.dump({ storage => { 'address' => address(storage), 'token' => token(storage) } })) + Base64.strict_encode64(JSON.dump(storage => connection_data(storage))) + end + + def self.connection_data(storage) + { 'address' => address(storage), 'token' => token(storage) } end # All Gitaly RPC call sites should use GitalyClient.call. This method diff --git a/spec/lib/gitlab/gitaly_client_spec.rb b/spec/lib/gitlab/gitaly_client_spec.rb index e41a75c37a7..cf12baf1a93 100644 --- a/spec/lib/gitlab/gitaly_client_spec.rb +++ b/spec/lib/gitlab/gitaly_client_spec.rb @@ -119,6 +119,15 @@ describe Gitlab::GitalyClient do end end + describe '.connection_data' do + it 'returns connection data' do + address = 'tcp://localhost:9876' + stub_repos_storages address + + expect(described_class.connection_data('default')).to eq({ 'address' => address, 'token' => 'secret' }) + end + end + describe 'allow_n_plus_1_calls' do context 'when RequestStore is enabled', :request_store do it 'returns the result of the allow_n_plus_1_calls block' do |