BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
dcfe8950
Commit
dcfe8950
authored
Mar 27, 2018
by
Sean McGivern
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'workhorse-gitaly-mandatory' into 'master'
Make all workhorse gitaly calls opt-out See merge request gitlab-org/gitlab-ce!18002
parents
1d7ca033
f432fb9a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
8 deletions
+13
-8
workhorse-gitaly-mandatory.yml
changelogs/unreleased/workhorse-gitaly-mandatory.yml
+5
-0
workhorse.rb
lib/gitlab/workhorse.rb
+4
-4
workhorse_spec.rb
spec/lib/gitlab/workhorse_spec.rb
+4
-4
No files found.
changelogs/unreleased/workhorse-gitaly-mandatory.yml
0 → 100644
View file @
dcfe8950
---
title
:
Make all workhorse gitaly calls opt-out
merge_request
:
18002
author
:
type
:
other
lib/gitlab/workhorse.rb
View file @
dcfe8950
...
...
@@ -52,7 +52,7 @@ module Gitlab
end
def
send_git_blob
(
repository
,
blob
)
params
=
if
Gitlab
::
GitalyClient
.
feature_enabled?
(
:workhorse_raw_show
)
params
=
if
Gitlab
::
GitalyClient
.
feature_enabled?
(
:workhorse_raw_show
,
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
{
'GitalyServer'
=>
gitaly_server_hash
(
repository
),
'GetBlobRequest'
=>
{
...
...
@@ -80,7 +80,7 @@ module Gitlab
params
=
repository
.
archive_metadata
(
ref
,
Gitlab
.
config
.
gitlab
.
repository_downloads_path
,
format
)
raise
"Repository or ref not found"
if
params
.
empty?
if
Gitlab
::
GitalyClient
.
feature_enabled?
(
:workhorse_archive
)
if
Gitlab
::
GitalyClient
.
feature_enabled?
(
:workhorse_archive
,
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
params
.
merge!
(
'GitalyServer'
=>
gitaly_server_hash
(
repository
),
'GitalyRepository'
=>
repository
.
gitaly_repository
.
to_h
...
...
@@ -97,7 +97,7 @@ module Gitlab
end
def
send_git_diff
(
repository
,
diff_refs
)
params
=
if
Gitlab
::
GitalyClient
.
feature_enabled?
(
:workhorse_send_git_diff
)
params
=
if
Gitlab
::
GitalyClient
.
feature_enabled?
(
:workhorse_send_git_diff
,
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
{
'GitalyServer'
=>
gitaly_server_hash
(
repository
),
'RawDiffRequest'
=>
Gitaly
::
RawDiffRequest
.
new
(
...
...
@@ -115,7 +115,7 @@ module Gitlab
end
def
send_git_patch
(
repository
,
diff_refs
)
params
=
if
Gitlab
::
GitalyClient
.
feature_enabled?
(
:workhorse_send_git_patch
)
params
=
if
Gitlab
::
GitalyClient
.
feature_enabled?
(
:workhorse_send_git_patch
,
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
{
'GitalyServer'
=>
gitaly_server_hash
(
repository
),
'RawPatchRequest'
=>
Gitaly
::
RawPatchRequest
.
new
(
...
...
spec/lib/gitlab/workhorse_spec.rb
View file @
dcfe8950
...
...
@@ -55,7 +55,7 @@ describe Gitlab::Workhorse do
end
end
context
'when Gitaly workhorse_archive feature is disabled'
,
:
skip_gitaly_mock
do
context
'when Gitaly workhorse_archive feature is disabled'
,
:
disable_gitaly
do
it
'sets the header correctly'
do
key
,
command
,
params
=
decode_workhorse_header
(
subject
)
...
...
@@ -100,7 +100,7 @@ describe Gitlab::Workhorse do
end
end
context
'when Gitaly workhorse_send_git_patch feature is disabled'
,
:
skip_gitaly_mock
do
context
'when Gitaly workhorse_send_git_patch feature is disabled'
,
:
disable_gitaly
do
it
'sets the header correctly'
do
key
,
command
,
params
=
decode_workhorse_header
(
subject
)
...
...
@@ -173,7 +173,7 @@ describe Gitlab::Workhorse do
end
end
context
'when Gitaly workhorse_send_git_diff feature is disabled'
,
:
skip_gitaly_mock
do
context
'when Gitaly workhorse_send_git_diff feature is disabled'
,
:
disable_gitaly
do
it
'sets the header correctly'
do
key
,
command
,
params
=
decode_workhorse_header
(
subject
)
...
...
@@ -455,7 +455,7 @@ describe Gitlab::Workhorse do
end
end
context
'when Gitaly workhorse_raw_show feature is disabled'
,
:
skip_gitaly_mock
do
context
'when Gitaly workhorse_raw_show feature is disabled'
,
:
disable_gitaly
do
it
'sets the header correctly'
do
key
,
command
,
params
=
decode_workhorse_header
(
subject
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment