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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Strokov <pstrokov@gitlab.com>2020-07-06 12:38:49 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2020-07-06 12:38:49 +0300
commit8a5cc59b54a1ff87c49c0407b72b704b82690e23 (patch)
tree899a4ad78cd4ceb7bc5a268eb850b03e376421ba
parentc08c929b340e911b5d7633aeca1b039968cf672c (diff)
parent63d39ac6ee5632076c3f1899164f93eb4ef32b33 (diff)
Merge branch 'zj-remove-ff-struct' into 'master'
Remove unused feature flag See merge request gitlab-org/gitaly!2349
-rw-r--r--internal/metadata/featureflag/feature_flags.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/internal/metadata/featureflag/feature_flags.go b/internal/metadata/featureflag/feature_flags.go
index 0c0c2a498..6f84cc18e 100644
--- a/internal/metadata/featureflag/feature_flags.go
+++ b/internal/metadata/featureflag/feature_flags.go
@@ -6,9 +6,6 @@ type FeatureFlag struct {
}
var (
- // UploadPackFilter enables partial clones by sending uploadpack.allowFilter and uploadpack.allowAnySHA1InWant
- // to upload-pack
- UploadPackFilter = FeatureFlag{Name: "upload_pack_filter", OnByDefault: false}
// LinguistFileCountStats will invoke an additional git-linguist command to get the number of files per language
LinguistFileCountStats = FeatureFlag{Name: "linguist_file_count_stats", OnByDefault: false}
// GoUpdateHook will bypass the ruby update hook and use the go implementation of custom hooks