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 /internal/git2go
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 'internal/git2go')
-rw-r--r--internal/git2go/executor.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/git2go/executor.go b/internal/git2go/executor.go
index 9524f03b1..30c8ff0a3 100644
--- a/internal/git2go/executor.go
+++ b/internal/git2go/executor.go
@@ -24,8 +24,8 @@ var (
// ErrInvalidArgument is returned in case the merge arguments are invalid.
ErrInvalidArgument = errors.New("invalid parameters")
- // BinaryName is a binary name with version suffix .
- BinaryName = "gitaly-git2go-v15"
+ // BinaryName is the name of the gitaly-git2go binary.
+ BinaryName = "gitaly-git2go"
)
// Executor executes gitaly-git2go.