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:
authorJohn Cai <jcai@gitlab.com>2019-07-09 17:36:54 +0300
committerJohn Cai <jcai@gitlab.com>2019-07-15 21:32:56 +0300
commitc77d7837bb5e564623b5121e706d76ab7230985b (patch)
tree806df2f370f10510c34bedf7314101697d8c89f9 /lib/feature
parent96277bb9d61b5aaf5c2edc388c5eabfc743478f0 (diff)
Remove catfile cache feature flag
Diffstat (limited to 'lib/feature')
-rw-r--r--lib/feature/gitaly.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/feature/gitaly.rb b/lib/feature/gitaly.rb
index 67c0b902c0c..edfd2fb17f3 100644
--- a/lib/feature/gitaly.rb
+++ b/lib/feature/gitaly.rb
@@ -5,16 +5,12 @@ require 'set'
class Feature
class Gitaly
# Server feature flags should use '_' to separate words.
- # CATFILE_CACHE sets an incorrect example
- CATFILE_CACHE = 'catfile-cache'.freeze
-
SERVER_FEATURE_FLAGS =
[
- CATFILE_CACHE,
'get_commit_signatures'.freeze
].freeze
- DEFAULT_ON_FLAGS = Set.new([CATFILE_CACHE]).freeze
+ DEFAULT_ON_FLAGS = Set.new([]).freeze
class << self
def enabled?(feature_flag)