Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/gitlab/git/repository.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/gitlab/git/repository.rb b/lib/gitlab/git/repository.rb
index a3bc79109f8..b3613c53e47 100644
--- a/lib/gitlab/git/repository.rb
+++ b/lib/gitlab/git/repository.rb
@@ -169,7 +169,12 @@ module Gitlab
# Gitaly migration: https://gitlab.com/gitlab-org/gitaly/issues/390
def tags
gitaly_migrate(:tags) do |is_enabled|
- if is_enabled
+ # We disable this because:
+ # https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/2554#note_36403262
+ # We should flip it back in:
+ # https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/13092
+ # rubocop:disable Lint/LiteralInCondition
+ if false # is_enabled
tags_from_gitaly
else
tags_from_rugged