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:
-rw-r--r--proto/go/gitalypb/objectpool_grpc.pb.go12
-rw-r--r--proto/objectpool.proto6
2 files changed, 9 insertions, 9 deletions
diff --git a/proto/go/gitalypb/objectpool_grpc.pb.go b/proto/go/gitalypb/objectpool_grpc.pb.go
index df3df9cf7..12b333213 100644
--- a/proto/go/gitalypb/objectpool_grpc.pb.go
+++ b/proto/go/gitalypb/objectpool_grpc.pb.go
@@ -39,7 +39,8 @@ type ObjectPoolServiceClient interface {
// does not depend on the pool member anymore and can be removed from it. Note that this function
// is not safe for use.
//
- // This RPC is deprecated. Please use DisconnectGitAlternates instead.
+ // This RPC is deprecated. Please use DisconnectGitAlternates instead. It will be removed in
+ // Gitaly v16.0, refer to https://gitlab.com/gitlab-org/gitaly/-/issues/4655.
ReduplicateRepository(ctx context.Context, in *ReduplicateRepositoryRequest, opts ...grpc.CallOption) (*ReduplicateRepositoryResponse, error)
// DisconnectGitAlternates will disconnect the object pool member from its object pool. It will:
//
@@ -54,8 +55,7 @@ type ObjectPoolServiceClient interface {
// If successful, the object pool member is disconnected from the object pool and does not depend
// on it anymore.
//
- // This RPC does not return an error in case the repository is not linked to any object pool. It
- // will be removed in Gitaly v16.0, refer to https://gitlab.com/gitlab-org/gitaly/-/issues/4655.
+ // This RPC does not return an error in case the repository is not linked to any object pool.
DisconnectGitAlternates(ctx context.Context, in *DisconnectGitAlternatesRequest, opts ...grpc.CallOption) (*DisconnectGitAlternatesResponse, error)
// FetchIntoObjectPool fetches all references from a pool member into an object pool so that
// objects shared between this repository and other pool members can be deduplicated. This RPC
@@ -160,7 +160,8 @@ type ObjectPoolServiceServer interface {
// does not depend on the pool member anymore and can be removed from it. Note that this function
// is not safe for use.
//
- // This RPC is deprecated. Please use DisconnectGitAlternates instead.
+ // This RPC is deprecated. Please use DisconnectGitAlternates instead. It will be removed in
+ // Gitaly v16.0, refer to https://gitlab.com/gitlab-org/gitaly/-/issues/4655.
ReduplicateRepository(context.Context, *ReduplicateRepositoryRequest) (*ReduplicateRepositoryResponse, error)
// DisconnectGitAlternates will disconnect the object pool member from its object pool. It will:
//
@@ -175,8 +176,7 @@ type ObjectPoolServiceServer interface {
// If successful, the object pool member is disconnected from the object pool and does not depend
// on it anymore.
//
- // This RPC does not return an error in case the repository is not linked to any object pool. It
- // will be removed in Gitaly v16.0, refer to https://gitlab.com/gitlab-org/gitaly/-/issues/4655.
+ // This RPC does not return an error in case the repository is not linked to any object pool.
DisconnectGitAlternates(context.Context, *DisconnectGitAlternatesRequest) (*DisconnectGitAlternatesResponse, error)
// FetchIntoObjectPool fetches all references from a pool member into an object pool so that
// objects shared between this repository and other pool members can be deduplicated. This RPC
diff --git a/proto/objectpool.proto b/proto/objectpool.proto
index 58ab461d3..c7b204b0e 100644
--- a/proto/objectpool.proto
+++ b/proto/objectpool.proto
@@ -61,7 +61,8 @@ service ObjectPoolService {
// does not depend on the pool member anymore and can be removed from it. Note that this function
// is not safe for use.
//
- // This RPC is deprecated. Please use DisconnectGitAlternates instead.
+ // This RPC is deprecated. Please use DisconnectGitAlternates instead. It will be removed in
+ // Gitaly v16.0, refer to https://gitlab.com/gitlab-org/gitaly/-/issues/4655.
rpc ReduplicateRepository(ReduplicateRepositoryRequest) returns (ReduplicateRepositoryResponse) {
option deprecated = true;
option (op_type) = {
@@ -82,8 +83,7 @@ service ObjectPoolService {
// If successful, the object pool member is disconnected from the object pool and does not depend
// on it anymore.
//
- // This RPC does not return an error in case the repository is not linked to any object pool. It
- // will be removed in Gitaly v16.0, refer to https://gitlab.com/gitlab-org/gitaly/-/issues/4655.
+ // This RPC does not return an error in case the repository is not linked to any object pool.
rpc DisconnectGitAlternates(DisconnectGitAlternatesRequest) returns (DisconnectGitAlternatesResponse) {
option (op_type) = {
op: MUTATOR