Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
87496418
Commit
87496418
authored
Jun 12, 2018
by
Jacob Vosmaer (GitLab)
Committed by
Sean McGivern
Jun 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move Gitaly branch/tag/ref RPC's to opt-out
parent
2e60272f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
8 deletions
+13
-8
changelogs/unreleased/gitaly-opt-out-branch-tag.yml
changelogs/unreleased/gitaly-opt-out-branch-tag.yml
+5
-0
lib/gitlab/git/repository.rb
lib/gitlab/git/repository.rb
+8
-8
No files found.
changelogs/unreleased/gitaly-opt-out-branch-tag.yml
0 → 100644
View file @
87496418
---
title
:
Move Gitaly branch/tag/ref RPC's to opt-out
merge_request
:
19644
author
:
type
:
other
lib/gitlab/git/repository.rb
View file @
87496418
...
...
@@ -120,7 +120,7 @@ module Gitlab
# Default branch in the repository
def
root_ref
@root_ref
||=
gitaly_migrate
(
:root_ref
)
do
|
is_enabled
|
@root_ref
||=
gitaly_migrate
(
:root_ref
,
status:
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
do
|
is_enabled
|
if
is_enabled
gitaly_ref_client
.
default_branch_name
else
...
...
@@ -152,7 +152,7 @@ module Gitlab
# Returns an Array of branch names
# sorted by name ASC
def
branch_names
gitaly_migrate
(
:branch_names
)
do
|
is_enabled
|
gitaly_migrate
(
:branch_names
,
status:
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
do
|
is_enabled
|
if
is_enabled
gitaly_ref_client
.
branch_names
else
...
...
@@ -163,7 +163,7 @@ module Gitlab
# Returns an Array of Branches
def
branches
gitaly_migrate
(
:branches
)
do
|
is_enabled
|
gitaly_migrate
(
:branches
,
status:
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
do
|
is_enabled
|
if
is_enabled
gitaly_ref_client
.
branches
else
...
...
@@ -200,7 +200,7 @@ module Gitlab
end
def
local_branches
(
sort_by:
nil
)
gitaly_migrate
(
:local_branches
)
do
|
is_enabled
|
gitaly_migrate
(
:local_branches
,
status:
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
do
|
is_enabled
|
if
is_enabled
gitaly_ref_client
.
local_branches
(
sort_by:
sort_by
)
else
...
...
@@ -270,7 +270,7 @@ module Gitlab
# Returns an Array of tag names
def
tag_names
gitaly_migrate
(
:tag_names
)
do
|
is_enabled
|
gitaly_migrate
(
:tag_names
,
status:
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
do
|
is_enabled
|
if
is_enabled
gitaly_ref_client
.
tag_names
else
...
...
@@ -283,7 +283,7 @@ module Gitlab
#
# Gitaly migration: https://gitlab.com/gitlab-org/gitaly/issues/390
def
tags
gitaly_migrate
(
:tags
)
do
|
is_enabled
|
gitaly_migrate
(
:tags
,
status:
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
do
|
is_enabled
|
if
is_enabled
tags_from_gitaly
else
...
...
@@ -310,7 +310,7 @@ module Gitlab
#
# name - The name of the tag as a String.
def
tag_exists?
(
name
)
gitaly_migrate
(
:ref_exists_tags
)
do
|
is_enabled
|
gitaly_migrate
(
:ref_exists_tags
,
status:
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
do
|
is_enabled
|
if
is_enabled
gitaly_ref_exists?
(
"refs/tags/
#{
name
}
"
)
else
...
...
@@ -323,7 +323,7 @@ module Gitlab
#
# name - The name of the branch as a String.
def
branch_exists?
(
name
)
gitaly_migrate
(
:ref_exists_branches
)
do
|
is_enabled
|
gitaly_migrate
(
:ref_exists_branches
,
status:
Gitlab
::
GitalyClient
::
MigrationStatus
::
OPT_OUT
)
do
|
is_enabled
|
if
is_enabled
gitaly_ref_exists?
(
"refs/heads/
#{
name
}
"
)
else
...
...
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