ruby/lib/gitaly/commit_services_pb.rb in gitaly-proto-0.69.0 vs ruby/lib/gitaly/commit_services_pb.rb in gitaly-proto-0.70.0
- old
+ new
@@ -29,9 +29,13 @@
rpc :RawBlame, RawBlameRequest, stream(RawBlameResponse)
rpc :LastCommitForPath, LastCommitForPathRequest, LastCommitForPathResponse
rpc :CommitsByMessage, CommitsByMessageRequest, stream(CommitsByMessageResponse)
rpc :ListCommitsByOid, ListCommitsByOidRequest, stream(ListCommitsByOidResponse)
rpc :FilterShasWithSignatures, stream(FilterShasWithSignaturesRequest), stream(FilterShasWithSignaturesResponse)
+ # ExtractCommitSignature returns a stream because the signed text may be
+ # arbitrarily large and signature verification is impossible without the
+ # full text.
+ rpc :ExtractCommitSignature, ExtractCommitSignatureRequest, stream(ExtractCommitSignatureResponse)
end
Stub = Service.rpc_stub_class
end
end