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:
authorChristian Couder <chriscool@tuxfamily.org>2021-01-27 12:06:55 +0300
committerChristian Couder <chriscool@tuxfamily.org>2021-01-27 12:06:55 +0300
commit56702a29c766b9d436963f5b64434fa3d32ce7ab (patch)
treeb5e55024731f3e26a49faba3cf87ed7bf286fe99 /internal/praefect/replicator_test.go
parent627c53e3e51f73c3d19df2b49b956c02ba200e78 (diff)
parent760764bdf160002a12fdb39c2cbed362e28a6834 (diff)
Merge branch 'ps-fix-withreceivepackhooks' into 'master'
WithReceivePackHooks should use passed in parameter See merge request gitlab-org/gitaly!3025
Diffstat (limited to 'internal/praefect/replicator_test.go')
-rw-r--r--internal/praefect/replicator_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/praefect/replicator_test.go b/internal/praefect/replicator_test.go
index 3f6d5ef6d..4cc9e41dd 100644
--- a/internal/praefect/replicator_test.go
+++ b/internal/praefect/replicator_test.go
@@ -1037,7 +1037,7 @@ func newReplicationService(tb testing.TB) (*grpc.Server, string) {
gitalypb.RegisterRepositoryServiceServer(svr, repository.NewServer(gitaly_config.Config, RubyServer, locator, gitCmdFactory))
gitalypb.RegisterObjectPoolServiceServer(svr, objectpoolservice.NewServer(gitaly_config.Config, locator, gitCmdFactory))
gitalypb.RegisterRemoteServiceServer(svr, remote.NewServer(gitaly_config.Config, RubyServer, locator))
- gitalypb.RegisterSSHServiceServer(svr, ssh.NewServer(locator))
+ gitalypb.RegisterSSHServiceServer(svr, ssh.NewServer(gitaly_config.Config, locator))
gitalypb.RegisterRefServiceServer(svr, ref.NewServer(gitaly_config.Config, locator))
healthpb.RegisterHealthServer(svr, health.NewServer())
reflection.Register(svr)