Use a unique feature name for Workhorse send blob migration

This commit is contained in:
Ahmad Sherif 2017-07-24 07:07:20 +02:00
parent b92d5135d8
commit 1300736850
2 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ module Gitlab
end
def send_git_blob(repository, blob)
params = if Gitlab::GitalyClient.feature_enabled?(:project_raw_show)
params = if Gitlab::GitalyClient.feature_enabled?(:workhorse_raw_show)
{
'GitalyServer' => gitaly_server_hash(repository),
'GetBlobRequest' => {

View File

@ -325,7 +325,7 @@ describe Gitlab::Workhorse, lib: true do
subject { described_class.send_git_blob(repository, blob) }
context 'when Gitaly project_raw_show feature is enabled' do
context 'when Gitaly workhorse_raw_show feature is enabled' do
it 'sets the header correctly' do
key, command, params = decode_workhorse_header(subject)
@ -345,7 +345,7 @@ describe Gitlab::Workhorse, lib: true do
end
end
context 'when Gitaly project_raw_show feature is disabled', skip_gitaly_mock: true do
context 'when Gitaly workhorse_raw_show feature is disabled', skip_gitaly_mock: true do
it 'sets the header correctly' do
key, command, params = decode_workhorse_header(subject)