diff options
author | Pavlo Strokov <pstrokov@gitlab.com> | 2021-06-02 11:54:10 +0300 |
---|---|---|
committer | Pavlo Strokov <pstrokov@gitlab.com> | 2021-06-02 11:56:45 +0300 |
commit | 9f5a802258338483075aa440225d67e95616740f (patch) | |
tree | 10f79f776fd30501c7a8db8fa2eb06a3636756c8 /cmd | |
parent | 40ff6687b3b0fbe5285cdeccf9afb84e42823a4b (diff) | |
download | gitlab-shell-9f5a802258338483075aa440225d67e95616740f.tar.gz |
fix: upgrade of the gitaly dependency
Gitaly project now properly respects module release flow
and includes a module suffix in the package name. It requires
to re-write all non-suffixed imports with suffixed of a specific
version of tha module. With proper module versioning we don't
need to use a 'replace' directive to point to specific commit
and can use semantic versioning for the gitaly dependency.
Part of: https://gitlab.com/gitlab-org/gitaly/-/issues/3177
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/gitlab-sshd/acceptance_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/gitlab-sshd/acceptance_test.go b/cmd/gitlab-sshd/acceptance_test.go index 3590bc7..760be8f 100644 --- a/cmd/gitlab-sshd/acceptance_test.go +++ b/cmd/gitlab-sshd/acceptance_test.go @@ -23,8 +23,8 @@ import ( "github.com/mikesmitty/edkey" "github.com/pires/go-proxyproto" "github.com/stretchr/testify/require" - gitalyClient "gitlab.com/gitlab-org/gitaly/client" - pb "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb" + gitalyClient "gitlab.com/gitlab-org/gitaly/v14/client" + pb "gitlab.com/gitlab-org/gitaly/v14/proto/go/gitalypb" "gitlab.com/gitlab-org/gitlab-shell/internal/testhelper" "golang.org/x/crypto/ssh" ) |