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>2023-04-03 09:09:52 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2023-04-03 11:23:35 +0300
commitc9a98b8ca1834d6a43de2be8be87eb3ec4264778 (patch)
treeb2246563e283460736c24ee0e7102db62f25115c /cmd/gitaly-ssh
parentb9173264367e7de1f6e3d5482589c0022b091335 (diff)
gitaly: Remove Ruby server dependency
The Ruby server is never set up anymore and we don't ever use it either. Let's remove the dependency on it.
Diffstat (limited to 'cmd/gitaly-ssh')
-rw-r--r--cmd/gitaly-ssh/auth_test.go2
-rw-r--r--cmd/gitaly-ssh/upload_pack_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/cmd/gitaly-ssh/auth_test.go b/cmd/gitaly-ssh/auth_test.go
index 0446d3875..e8ac5c5ab 100644
--- a/cmd/gitaly-ssh/auth_test.go
+++ b/cmd/gitaly-ssh/auth_test.go
@@ -45,7 +45,7 @@ func TestConnectivity(t *testing.T) {
runGitaly := func(tb testing.TB, cfg config.Cfg) string {
tb.Helper()
- return testserver.RunGitalyServer(tb, cfg, nil, setup.RegisterAll, testserver.WithDisablePraefect())
+ return testserver.RunGitalyServer(tb, cfg, setup.RegisterAll, testserver.WithDisablePraefect())
}
testCases := []struct {
diff --git a/cmd/gitaly-ssh/upload_pack_test.go b/cmd/gitaly-ssh/upload_pack_test.go
index 06a30dcec..9b861fabc 100644
--- a/cmd/gitaly-ssh/upload_pack_test.go
+++ b/cmd/gitaly-ssh/upload_pack_test.go
@@ -32,7 +32,7 @@ func TestVisibilityOfHiddenRefs(t *testing.T) {
SkipCreationViaService: true,
})
- address := testserver.RunGitalyServer(t, cfg, nil, setup.RegisterAll, testserver.WithDisablePraefect())
+ address := testserver.RunGitalyServer(t, cfg, setup.RegisterAll, testserver.WithDisablePraefect())
// Create a keep-around ref
commitID := gittest.WriteCommit(t, cfg, repoPath)