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:
authorToon Claes <toon@gitlab.com>2024-01-19 14:18:04 +0300
committerToon Claes <toon@gitlab.com>2024-01-19 14:22:25 +0300
commit3e262864c8830120d83f35d029f88b03b1a9df03 (patch)
treed0a938915e89c498e1869326578b997e10f142bf /internal/testhelper/testhelper.go
parentf87a9ac8bd9ad76807d92660b91002b7dffd35d9 (diff)
git: Use Git version 2.43 only
Remove the feature flag to toggle the use of v2.43, enable it by default, and remove the use of v2.42. Label: maintenance::dependency
Diffstat (limited to 'internal/testhelper/testhelper.go')
-rw-r--r--internal/testhelper/testhelper.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/internal/testhelper/testhelper.go b/internal/testhelper/testhelper.go
index 39f371de3..452c5b000 100644
--- a/internal/testhelper/testhelper.go
+++ b/internal/testhelper/testhelper.go
@@ -260,8 +260,6 @@ func ContextWithoutCancel(opts ...ContextOpt) context.Context {
ctx = featureflag.ContextWithFeatureFlag(ctx, featureflag.UseResizableSemaphoreInConcurrencyLimiter, rand.Int()%2 == 0)
// Randomly enable ExecCommandDirectlyInCgroup.
ctx = featureflag.ContextWithFeatureFlag(ctx, featureflag.ExecCommandDirectlyInCgroup, rand.Int()%2 == 0)
- // Randomly enable newer Git version.
- ctx = featureflag.ContextWithFeatureFlag(ctx, featureflag.GitV243, rand.Int()%2 == 0)
// Disable LogGitTraces
ctx = featureflag.ContextWithFeatureFlag(ctx, featureflag.LogGitTraces, false)