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:
authorSami Hiltunen <shiltunen@gitlab.com>2022-07-25 16:54:51 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2022-08-02 08:38:48 +0300
commitb42e3c04b00552a84c104e06e8f0d3bc5194f0d7 (patch)
tree752266ac21688c3ea8e4e28692a5091d9f699fc0 /packed_binaries.go
parent5603ccdfe214ec6655d91ba43dacad61f0d3f937 (diff)
Rename gitaly-git2go-v15 to gitaly-git2gosmh-dont-install-aux-binaries
With the auxiliary binaries packed into the gitaly binary and deployed as a single unit, we no longer need to maintain backwards compatibility between them and Gitaly. This commit drops the now unnecessary major version suffix from the gitaly-git2go binary which was needed due to the major version upgrades causing the type paths to change and thus breaking the Gob protocol between the binaries.
Diffstat (limited to 'packed_binaries.go')
-rw-r--r--packed_binaries.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/packed_binaries.go b/packed_binaries.go
index 16c02f2e4..fe3e435e0 100644
--- a/packed_binaries.go
+++ b/packed_binaries.go
@@ -11,7 +11,7 @@ import (
// buildDir is the directory path where our build target places the built binaries.
const buildDir = "_build/bin"
-//go:embed _build/bin/gitaly-hooks _build/bin/gitaly-ssh _build/bin/gitaly-git2go-v15 _build/bin/gitaly-lfs-smudge
+//go:embed _build/bin/gitaly-hooks _build/bin/gitaly-ssh _build/bin/gitaly-git2go _build/bin/gitaly-lfs-smudge
//
// packedBinariesFS contains embedded binaries. If you modify the above embeddings, you must also update
// GITALY_PACKED_EXECUTABLES in Makefile and packedBinaries in internal/gitaly/config/config.go.