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:
authorPaul Okstad <pokstad@gitlab.com>2019-08-22 09:53:14 +0300
committerStan Hu <stanhu@gmail.com>2019-08-22 09:53:14 +0300
commitd7ae3efb87873425bce19dfa3ff1cce9e6acc8c0 (patch)
treeebec55ffd7fa1b3bc3858f6a8af098d01a757053
parent994c4629df65e3aad796d6c98e004acfdd1bae45 (diff)
Add Gitaly info-ref cache feature flags
-rw-r--r--lib/feature/gitaly.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/feature/gitaly.rb b/lib/feature/gitaly.rb
index edfd2fb17f3..be397a478cd 100644
--- a/lib/feature/gitaly.rb
+++ b/lib/feature/gitaly.rb
@@ -6,8 +6,10 @@ class Feature
class Gitaly
# Server feature flags should use '_' to separate words.
SERVER_FEATURE_FLAGS =
- [
- 'get_commit_signatures'.freeze
+ %w[
+ get_commit_signatures
+ cache_invalidator
+ inforef_uploadpack_cache
].freeze
DEFAULT_ON_FLAGS = Set.new([]).freeze