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:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2020-07-03 15:48:50 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2020-07-03 15:48:50 +0300
commit63d39ac6ee5632076c3f1899164f93eb4ef32b33 (patch)
tree71391763795dd703205770e91e05c2787d95e768
parentde246fc4268b1db216a348f01f37f54907b21635 (diff)
Remove unused feature flag
-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