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>2022-03-28 08:39:34 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-03-28 09:39:22 +0300
commit0cb70a8df7f282299ef06a76072d541ea349e8d0 (patch)
tree247aca7fe13723de3f66ed8a51a5ff3c8159c81e
parente11d3f00ce8d9201b91c3524af1ebc8ae5f6a020 (diff)
git: Enable bundled Git v2.35.1.gl1 by default
With b547b368c (git: Support bundled Git v2.35.1.gl1, 2022-02-22) we have introduced support fur bundled Git v2.35.1.gl1. The flag was subsequently rolled out on 2022-03-23. While there had been initial issues with repositories which had preexisting corrupted references, which were uncovered by this upgrade, the rollout went along smoothly otherwise. Let's enable this new Git version by default. Note that this will cause us to also use the new Git version in background jobs, which aren't covered right now because we don't support feature flags in there. Changelog: changed
-rw-r--r--internal/metadata/featureflag/ff_git_v2351_with_fetch_speedups.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/metadata/featureflag/ff_git_v2351_with_fetch_speedups.go b/internal/metadata/featureflag/ff_git_v2351_with_fetch_speedups.go
index 3c3610b9e..b62a4253f 100644
--- a/internal/metadata/featureflag/ff_git_v2351_with_fetch_speedups.go
+++ b/internal/metadata/featureflag/ff_git_v2351_with_fetch_speedups.go
@@ -2,4 +2,4 @@ package featureflag
// GitV2351WithFetchSpeedups will enable the use of Git v2.35.1 with patches speeding up mirror
// fetches in repositories with many references.
-var GitV2351WithFetchSpeedups = NewFeatureFlag("git_v2351_with_fetch_speedups", false)
+var GitV2351WithFetchSpeedups = NewFeatureFlag("git_v2351_with_fetch_speedups", true)