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-01-17 20:32:20 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2023-01-17 20:32:20 +0300
commit1cbfcecce1af5ea329895161e0083793ce134d49 (patch)
tree7564f98bb200782f439a035e51f4c93aa206afe8
parent7e80ece2ebfd82776285c83362e6874dacb5b26a (diff)
parent54fe8bed1883191142aaeb92d4a99a6e2389fea7 (diff)
Merge branch 'ahorvath-doc-20230110' into 'master'
doc: Document a single proto field with a too-generic name See merge request https://gitlab.com/gitlab-org/gitaly/-/merge_requests/5251 Merged-by: Patrick Steinhardt <psteinhardt@gitlab.com> Approved-by: Patrick Steinhardt <psteinhardt@gitlab.com> Reviewed-by: Patrick Steinhardt <psteinhardt@gitlab.com> Co-authored-by: Andras Horvath <ahorvath@gitlab.com>
-rw-r--r--proto/go/gitalypb/repository.pb.go2
-rw-r--r--proto/repository.proto2
2 files changed, 2 insertions, 2 deletions
diff --git a/proto/go/gitalypb/repository.pb.go b/proto/go/gitalypb/repository.pb.go
index db4e1182b..4606befdc 100644
--- a/proto/go/gitalypb/repository.pb.go
+++ b/proto/go/gitalypb/repository.pb.go
@@ -3864,7 +3864,7 @@ type SearchFilesByNameResponse struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- // This comment is left unintentionally blank.
+ // Files contains the paths of files that have been found to match the query.
Files [][]byte `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
}
diff --git a/proto/repository.proto b/proto/repository.proto
index 0cda33a82..869c9c2f7 100644
--- a/proto/repository.proto
+++ b/proto/repository.proto
@@ -957,7 +957,7 @@ message SearchFilesByNameRequest {
// This comment is left unintentionally blank.
message SearchFilesByNameResponse {
- // This comment is left unintentionally blank.
+ // Files contains the paths of files that have been found to match the query.
repeated bytes files = 1;
}