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>2022-08-01 13:30:08 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-08-01 13:30:08 +0300
commit3eac3e7f6535d6121cb7790870c169d4d3ed736e (patch)
treef1e56eed99d130a52e80c06b673fd0ec6523f59f /ruby/proto
parentd02fe745eb87ef2301d18d04ae0a4964ee3b2d56 (diff)
parentd87c743565a993868ea6a3578e68fbca04aa33c5 (diff)
Merge branch 'pks-proto-fix-find-tag-error-definition' into 'master'
proto: Fix definition of FindTagError See merge request gitlab-org/gitaly!4770
Diffstat (limited to 'ruby/proto')
-rw-r--r--ruby/proto/gitaly/ref_pb.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/ruby/proto/gitaly/ref_pb.rb b/ruby/proto/gitaly/ref_pb.rb
index 72aa78039..dbedb6a92 100644
--- a/ruby/proto/gitaly/ref_pb.rb
+++ b/ruby/proto/gitaly/ref_pb.rb
@@ -74,7 +74,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
optional :tag, :message, 1, "gitaly.Tag"
end
add_message "gitaly.FindTagError" do
- optional :tag_not_found, :message, 1, "gitaly.ReferenceNotFoundError"
+ oneof :error do
+ optional :tag_not_found, :message, 1, "gitaly.ReferenceNotFoundError"
+ end
end
add_message "gitaly.FindAllTagsRequest" do
optional :repository, :message, 1, "gitaly.Repository"