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:
authorDouwe Maan <douwe@gitlab.com>2018-05-23 12:50:20 +0300
committerDouwe Maan <douwe@gitlab.com>2018-05-23 12:50:20 +0300
commit18ed49c9d66a37b38f25ebb9c00ef4f8623aee70 (patch)
tree736ba70609cd3f42ed0eca3fb44e0784d9c7f3d2 /lib/gitlab
parent7f484cd1a8494491165593cb7e2185e39c155c0c (diff)
parentf0ef31a1146cf19d9a2d78c42d901deb60183b5a (diff)
Merge branch 'gitaly-repo-info-attributes-opt-out' into 'master'
Move Repository#info_attributes to OptOut in gitaly See merge request gitlab-org/gitlab-ce!19092
Diffstat (limited to 'lib/gitlab')
-rw-r--r--lib/gitlab/git/repository.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/git/repository.rb b/lib/gitlab/git/repository.rb
index 2be604a5b13..1e6beeef9f7 100644
--- a/lib/gitlab/git/repository.rb
+++ b/lib/gitlab/git/repository.rb
@@ -1048,7 +1048,7 @@ module Gitlab
return @info_attributes if @info_attributes
content =
- gitaly_migrate(:get_info_attributes) do |is_enabled|
+ gitaly_migrate(:get_info_attributes, status: Gitlab::GitalyClient::MigrationStatus::OPT_OUT) do |is_enabled|
if is_enabled
gitaly_repository_client.info_attributes
else