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-31 14:36:44 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-03-31 14:36:44 +0300
commitaf1a3fe7b536d22a6db9ba6591d222b23d01d83f (patch)
tree6f47b4ba63db1e9472dad1e6d6ca80791233ce9e
parent888e6233fd85691f0852ae6c4a3656da9bf3d8e4 (diff)
git: Remove execution environment for old bundled Git version
The old execution environment for bundled Git v2.33.1.gl3 is not used anymore now that we have Git v2.35.1.gl1 unconditionally enabled. Let's remove the old environment. Please note that we don't yet remove the old execution environment from our Makefile just yet. We must wait for a release first so that we don't remove the old bundled Git version during zero-downtime upgrades, which would break any currently running Gitaly servers.
-rw-r--r--internal/git/execution_environment.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/internal/git/execution_environment.go b/internal/git/execution_environment.go
index ccf90afd4..f5aa36b53 100644
--- a/internal/git/execution_environment.go
+++ b/internal/git/execution_environment.go
@@ -28,11 +28,6 @@ var (
BundledGitEnvironmentConstructor{
Suffix: "-v2.35.1.gl1",
},
- BundledGitEnvironmentConstructor{
- // This is the current default bundled Git environment, which does not yet
- // have a version suffix.
- Suffix: "",
- },
DistributedGitEnvironmentConstructor{},
FallbackGitEnvironmentConstructor{},
}