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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-07-08 08:49:45 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-07-08 08:53:21 +0300
commit5c43dfe6f4d8f97f0a7c33d6c8d9da0a0f2f3018 (patch)
tree9bfd14b3128314ad5db1397242738487525de4ef
parent20c18da3ef98740a5f9e852197ad643ad74dbd4a (diff)
featureflag: Default-enable LFS pointers pipeline
The feature flag for use of the LFS pointers pipeline has rolled out to production since June 29th without any issues. Given that this guards code of an accessor and not a mutator, switch it to default-enabled. Changelog: changed
-rw-r--r--internal/metadata/featureflag/feature_flags.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/metadata/featureflag/feature_flags.go b/internal/metadata/featureflag/feature_flags.go
index 9896cd55a..7da15d75b 100644
--- a/internal/metadata/featureflag/feature_flags.go
+++ b/internal/metadata/featureflag/feature_flags.go
@@ -15,7 +15,7 @@ var (
FetchInternalRemoteErrors = FeatureFlag{Name: "fetch_internal_remote_errors", OnByDefault: false}
// LFSPointersPipeline enables the alternative pipeline implementation of LFS-pointer
// related RPCs.
- LFSPointersPipeline = FeatureFlag{Name: "lfs_pointers_pipeline", OnByDefault: false}
+ LFSPointersPipeline = FeatureFlag{Name: "lfs_pointers_pipeline", OnByDefault: true}
// GoSetConfig enables git2go implementation of SetConfig.
GoSetConfig = FeatureFlag{Name: "go_set_config", OnByDefault: false}
// CreateRepositoryFromBundleAtomicFetch will add the `--atomic` flag to git-fetch(1) in