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:
authorJames Liu <jliu@gitlab.com>2023-11-30 04:28:13 +0300
committerJames Liu <jliu@gitlab.com>2023-12-01 06:41:31 +0300
commit4be3785fd7fb5f5809e886d88b2b78f4823fcefb (patch)
tree6c8b39bf02519603f53c4985bcf93ec255f6a933
parentf3830800733e7970591ea8034e2bbca9d3e615a2 (diff)
proto: Add missing docs for PruneUnreachableObjects RPC
-rw-r--r--proto/go/gitalypb/repository.pb.go3
-rw-r--r--proto/repository.proto3
2 files changed, 4 insertions, 2 deletions
diff --git a/proto/go/gitalypb/repository.pb.go b/proto/go/gitalypb/repository.pb.go
index 57aec1c70..171bd012b 100644
--- a/proto/go/gitalypb/repository.pb.go
+++ b/proto/go/gitalypb/repository.pb.go
@@ -4439,7 +4439,8 @@ type PruneUnreachableObjectsRequest struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- // repository ...
+ // repository is the repo to prune. The storage_name and relative_path
+ // attributes must be provided.
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
}
diff --git a/proto/repository.proto b/proto/repository.proto
index 493bc955b..0445ce3a4 100644
--- a/proto/repository.proto
+++ b/proto/repository.proto
@@ -1248,7 +1248,8 @@ message OptimizeRepositoryResponse {
// PruneUnreachableObjectsRequest is a request for the PruneUnreachableObjects
// RPC call.
message PruneUnreachableObjectsRequest {
- // repository ...
+ // repository is the repo to prune. The storage_name and relative_path
+ // attributes must be provided.
Repository repository = 1 [(target_repository)=true];
}