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:
authorWill Chandler <wchandler@gitlab.com>2024-01-22 21:48:54 +0300
committerGitLab <noreply@gitlab.com>2024-01-22 21:48:54 +0300
commite9a4b66eee03f8ee8be751155b9ca5f5f801a17c (patch)
tree3dacce1c0a3542d6f6cc37708ce46d81c9cd979f /internal/gitaly/service/cleanup/testhelper_test.go
parent393446e5fbde1f6ff140e2fd3a525c1abfbe5010 (diff)
parent992753dca25886085bc3c4815a0bd760e5dc4e0f (diff)
Merge branch 'wc/filter-repo' into 'master'
cleanup: Add RewriteHistory RPC See merge request https://gitlab.com/gitlab-org/gitaly/-/merge_requests/6615 Merged-by: Will Chandler <wchandler@gitlab.com> Approved-by: karthik nayak <knayak@gitlab.com> Reviewed-by: Patrick Steinhardt <psteinhardt@gitlab.com> Reviewed-by: Will Chandler <wchandler@gitlab.com> Reviewed-by: karthik nayak <knayak@gitlab.com>
Diffstat (limited to 'internal/gitaly/service/cleanup/testhelper_test.go')
-rw-r--r--internal/gitaly/service/cleanup/testhelper_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/gitaly/service/cleanup/testhelper_test.go b/internal/gitaly/service/cleanup/testhelper_test.go
index 3f488eba8..8dd085f22 100644
--- a/internal/gitaly/service/cleanup/testhelper_test.go
+++ b/internal/gitaly/service/cleanup/testhelper_test.go
@@ -8,6 +8,7 @@ import (
"gitlab.com/gitlab-org/gitaly/v16/internal/gitaly/config"
"gitlab.com/gitlab-org/gitaly/v16/internal/gitaly/service"
hookservice "gitlab.com/gitlab-org/gitaly/v16/internal/gitaly/service/hook"
+ "gitlab.com/gitlab-org/gitaly/v16/internal/gitaly/service/objectpool"
"gitlab.com/gitlab-org/gitaly/v16/internal/gitaly/service/repository"
"gitlab.com/gitlab-org/gitaly/v16/internal/testhelper"
"gitlab.com/gitlab-org/gitaly/v16/internal/testhelper/testcfg"
@@ -38,6 +39,7 @@ func runCleanupServiceServer(t *testing.T, cfg config.Cfg) string {
gitalypb.RegisterCleanupServiceServer(srv, NewServer(deps))
gitalypb.RegisterHookServiceServer(srv, hookservice.NewServer(deps))
gitalypb.RegisterRepositoryServiceServer(srv, repository.NewServer(deps))
+ gitalypb.RegisterObjectPoolServiceServer(srv, objectpool.NewServer(deps))
})
}