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:
authorAhmad Sherif <me@ahmadsherif.com>2018-02-28 19:37:24 +0300
committerAhmad Sherif <me@ahmadsherif.com>2018-03-01 13:44:08 +0300
commitb6369d179270dc53c70ee7efa180907fb9d7c70c (patch)
tree0af692e7873290af5f734cf924dc54d31e864716
parent91ed4c266875605c1b1c21aea080b0952b2d6631 (diff)
Implement GetCommitSignatures RPC
Closes #1047
-rw-r--r--CHANGELOG.md5
-rw-r--r--internal/service/commit/commit_signatures.go57
-rw-r--r--internal/service/commit/commit_signatures_test.go134
-rw-r--r--internal/service/commit/testdata/gitlab-test-commit-a17a9f66543673edf0a3d1c6b93bdda3fe600f32-signature8
-rw-r--r--internal/service/commit/testdata/gitlab-test-commit-a17a9f66543673edf0a3d1c6b93bdda3fe600f32-signed-text6
-rw-r--r--ruby/Gemfile2
-rw-r--r--ruby/Gemfile.lock4
-rw-r--r--ruby/lib/gitaly_server/commit_service.rb79
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION2
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go2
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go324
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go191
-rw-r--r--vendor/vendor.json10
13 files changed, 602 insertions, 222 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5e6cc8d19..1663d1d98 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# Gitaly changelog
+UNRELEASED
+
+- Implement GetCommitSignatures RPC
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/609
+
[v0.86.0](https://gitlab.com/gitlab-org/gitaly/tags/v0.86.0)
- Implement BlobService.GetAllLfsPointers
diff --git a/internal/service/commit/commit_signatures.go b/internal/service/commit/commit_signatures.go
new file mode 100644
index 000000000..0be45f5ba
--- /dev/null
+++ b/internal/service/commit/commit_signatures.go
@@ -0,0 +1,57 @@
+package commit
+
+import (
+ "fmt"
+
+ "gitlab.com/gitlab-org/gitaly/internal/rubyserver"
+
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+
+ "google.golang.org/grpc/codes"
+ "google.golang.org/grpc/status"
+)
+
+func (s *server) GetCommitSignatures(request *pb.GetCommitSignaturesRequest, stream pb.CommitService_GetCommitSignaturesServer) error {
+ if err := validateGetCommitSignaturesRequest(request); err != nil {
+ return status.Errorf(codes.InvalidArgument, "GetCommitSignatures: %v", err)
+ }
+
+ ctx := stream.Context()
+
+ client, err := s.CommitServiceClient(ctx)
+ if err != nil {
+ return err
+ }
+
+ clientCtx, err := rubyserver.SetHeaders(ctx, request.GetRepository())
+ if err != nil {
+ return err
+ }
+
+ rubyStream, err := client.GetCommitSignatures(clientCtx, request)
+ if err != nil {
+ return err
+ }
+
+ return rubyserver.Proxy(func() error {
+ resp, err := rubyStream.Recv()
+ if err != nil {
+ md := rubyStream.Trailer()
+ stream.SetTrailer(md)
+ return err
+ }
+ return stream.Send(resp)
+ })
+}
+
+func validateGetCommitSignaturesRequest(request *pb.GetCommitSignaturesRequest) error {
+ if request.GetRepository() == nil {
+ return fmt.Errorf("empty Repository")
+ }
+
+ if len(request.GetCommitIds()) == 0 {
+ return fmt.Errorf("empty CommitIds")
+ }
+
+ return nil
+}
diff --git a/internal/service/commit/commit_signatures_test.go b/internal/service/commit/commit_signatures_test.go
new file mode 100644
index 000000000..79f7b2d1c
--- /dev/null
+++ b/internal/service/commit/commit_signatures_test.go
@@ -0,0 +1,134 @@
+package commit
+
+import (
+ "io"
+ "testing"
+
+ "gitlab.com/gitlab-org/gitaly/internal/testhelper"
+
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+
+ "github.com/stretchr/testify/require"
+ "google.golang.org/grpc/codes"
+)
+
+func TestSuccessfulGetCommitSignaturesRequest(t *testing.T) {
+ server, serverSocketPath := startTestServices(t)
+ defer server.Stop()
+
+ client, conn := newCommitServiceClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ request := &pb.GetCommitSignaturesRequest{
+ Repository: testRepo,
+ CommitIds: []string{
+ "5937ac0a7beb003549fc5fd26fc247adbce4a52e", // has signature
+ "e63f41fe459e62e1228fcef60d7189127aeba95a", // has no signature
+ "0000000000000000000000000000000000000000", // does not exist
+ "a17a9f66543673edf0a3d1c6b93bdda3fe600f32", // has signature
+ },
+ }
+
+ c, err := client.GetCommitSignatures(ctx, request)
+ require.NoError(t, err)
+
+ expectedSignautes := []*pb.GetCommitSignaturesResponse{
+ {
+ CommitId: "5937ac0a7beb003549fc5fd26fc247adbce4a52e",
+ Signature: testhelper.MustReadFile(t, "testdata/commit-5937ac0a7beb003549fc5fd26fc247adbce4a52e-signature"),
+ SignedText: testhelper.MustReadFile(t, "testdata/commit-5937ac0a7beb003549fc5fd26fc247adbce4a52e-signed-text"),
+ },
+ {
+ CommitId: "a17a9f66543673edf0a3d1c6b93bdda3fe600f32",
+ Signature: testhelper.MustReadFile(t, "testdata/gitlab-test-commit-a17a9f66543673edf0a3d1c6b93bdda3fe600f32-signature"),
+ SignedText: testhelper.MustReadFile(t, "testdata/gitlab-test-commit-a17a9f66543673edf0a3d1c6b93bdda3fe600f32-signed-text"),
+ },
+ }
+ fetchedSignatures := readAllSignaturesFromClient(t, c)
+
+ require.Equal(t, expectedSignautes, fetchedSignatures)
+}
+
+func TestFailedGetCommitSignaturesRequest(t *testing.T) {
+ server, serverSocketPath := startTestServices(t)
+ defer server.Stop()
+
+ client, conn := newCommitServiceClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ testCases := []struct {
+ desc string
+ request *pb.GetCommitSignaturesRequest
+ code codes.Code
+ }{
+ {
+ desc: "empty Repository",
+ request: &pb.GetCommitSignaturesRequest{
+ Repository: nil,
+ CommitIds: []string{"5937ac0a7beb003549fc5fd26fc247adbce4a52e"},
+ },
+ code: codes.InvalidArgument,
+ },
+ {
+ desc: "empty CommitIds",
+ request: &pb.GetCommitSignaturesRequest{
+ Repository: testRepo,
+ CommitIds: []string{},
+ },
+ code: codes.InvalidArgument,
+ },
+ }
+
+ for _, testCase := range testCases {
+ t.Run(testCase.desc, func(t *testing.T) {
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ c, err := client.GetCommitSignatures(ctx, testCase.request)
+ require.NoError(t, err)
+
+ for {
+ _, err = c.Recv()
+ if err != nil {
+ break
+ }
+ }
+
+ testhelper.AssertGrpcError(t, err, testCase.code, "")
+ })
+ }
+}
+
+func readAllSignaturesFromClient(t *testing.T, c pb.CommitService_GetCommitSignaturesClient) (signatures []*pb.GetCommitSignaturesResponse) {
+ for {
+ resp, err := c.Recv()
+ if err == io.EOF {
+ break
+ }
+ require.NoError(t, err)
+
+ if resp.CommitId != "" {
+ signatures = append(signatures, resp)
+ // first message contains either Signature or SignedText so no need to append anything
+ continue
+ }
+
+ currentSignature := signatures[len(signatures)-1]
+ if len(resp.Signature) != 0 {
+ currentSignature.Signature = append(currentSignature.Signature, resp.Signature...)
+ } else if len(resp.SignedText) != 0 {
+ currentSignature.SignedText = append(currentSignature.SignedText, resp.SignedText...)
+ }
+ }
+
+ return
+}
diff --git a/internal/service/commit/testdata/gitlab-test-commit-a17a9f66543673edf0a3d1c6b93bdda3fe600f32-signature b/internal/service/commit/testdata/gitlab-test-commit-a17a9f66543673edf0a3d1c6b93bdda3fe600f32-signature
new file mode 100644
index 000000000..61a8d3561
--- /dev/null
+++ b/internal/service/commit/testdata/gitlab-test-commit-a17a9f66543673edf0a3d1c6b93bdda3fe600f32-signature
@@ -0,0 +1,8 @@
+-----BEGIN PGP SIGNATURE-----
+
+iJwEAAEIAAYFAlmmbf0ACgkQv52SX5Ee/WVv1gP/WrjclOc3CYiTrTgNuxs/vyXl
+PtUrxbOYEpQtRV+id/agJgaJWKoHRYUoXSGBuykijsND43PMkrjfZiF2SbE0j0CS
+7oukSx83us+y/hn+ecZQG0OkrBZ2vQ9gHGbEN9RFyZXfgWtRcgqFnFZUxCznhzzk
+njAjb08aUpn9r8WHsdU=
+=HLte
+-----END PGP SIGNATURE----- \ No newline at end of file
diff --git a/internal/service/commit/testdata/gitlab-test-commit-a17a9f66543673edf0a3d1c6b93bdda3fe600f32-signed-text b/internal/service/commit/testdata/gitlab-test-commit-a17a9f66543673edf0a3d1c6b93bdda3fe600f32-signed-text
new file mode 100644
index 000000000..a7e7a8eb4
--- /dev/null
+++ b/internal/service/commit/testdata/gitlab-test-commit-a17a9f66543673edf0a3d1c6b93bdda3fe600f32-signed-text
@@ -0,0 +1,6 @@
+tree 86ec18bfe87ad42a782fdabd8310f9b7ac750f51
+parent 3c1d9a0266cb0c62d926f4a6c649beed561846f5
+author Bette Cartwright <bette.cartwright@example.net> 1504079357 +0200
+committer Bette Cartwright <bette.cartwright@example.net> 1504079357 +0200
+
+signed and authored commit by bette cartwright, different email
diff --git a/ruby/Gemfile b/ruby/Gemfile
index 9744bbb65..51ab3096f 100644
--- a/ruby/Gemfile
+++ b/ruby/Gemfile
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
gem 'github-linguist', '~> 4.7.0', require: 'linguist'
gem 'gitlab-markup', '~> 1.6.2'
-gem 'gitaly-proto', '~> 0.86.0', require: 'gitaly'
+gem 'gitaly-proto', '~> 0.87.0', require: 'gitaly'
gem 'activesupport', '~> 5.0.2'
gem 'rdoc', '~> 4.2'
gem 'gollum-lib', '~> 4.2', require: false
diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock
index bb0bbbce2..8a0f17680 100644
--- a/ruby/Gemfile.lock
+++ b/ruby/Gemfile.lock
@@ -17,7 +17,7 @@ GEM
multipart-post (>= 1.2, < 3)
gemojione (3.3.0)
json
- gitaly-proto (0.86.0)
+ gitaly-proto (0.87.0)
google-protobuf (~> 3.1)
grpc (~> 1.0)
github-linguist (4.7.6)
@@ -141,7 +141,7 @@ PLATFORMS
DEPENDENCIES
activesupport (~> 5.0.2)
- gitaly-proto (~> 0.86.0)
+ gitaly-proto (~> 0.87.0)
github-linguist (~> 4.7.0)
gitlab-markup (~> 1.6.2)
gitlab-styles (~> 2.0.0)
diff --git a/ruby/lib/gitaly_server/commit_service.rb b/ruby/lib/gitaly_server/commit_service.rb
index 5add5fce4..41fbfed80 100644
--- a/ruby/lib/gitaly_server/commit_service.rb
+++ b/ruby/lib/gitaly_server/commit_service.rb
@@ -92,33 +92,76 @@ module GitalyServer
bridge_exceptions do
repository = Gitlab::Git::Repository.from_gitaly(request.repository, call)
- begin
- signature, signed_text = Rugged::Commit.extract_signature(repository.rugged, request.commit_id)
- rescue Rugged::InvalidError
- raise GRPC::InvalidArgument.new("commit lookup failed for #{request.commit_id.inspect}")
- rescue Rugged::OdbError
- # The client does not care if the commit does not exist
- return []
+ Enumerator.new do |y|
+ each_commit_signature_chunk(repository, request.commit_id) do |signature_chunk, signed_text_chunk|
+ if signature_chunk.present?
+ y.yield Gitaly::ExtractCommitSignatureResponse.new(signature: signature_chunk)
+ end
+
+ if signed_text_chunk.present?
+ y.yield Gitaly::ExtractCommitSignatureResponse.new(signed_text: signed_text_chunk)
+ end
+ end
end
+ end
+ end
+
+ def get_commit_signatures(request, call)
+ bridge_exceptions do
+ repository = Gitlab::Git::Repository.from_gitaly(request.repository, call)
Enumerator.new do |y|
- signature_io = binary_stringio(signature)
- loop do
- chunk = signature_io.read(Gitlab.config.git.write_buffer_size)
- break if chunk.nil?
+ request.commit_ids.each do |commit_id|
+ msg = Gitaly::GetCommitSignaturesResponse.new(commit_id: commit_id)
- y.yield Gitaly::ExtractCommitSignatureResponse.new(signature: chunk)
- end
+ each_commit_signature_chunk(repository, commit_id) do |signature_chunk, signed_text_chunk|
+ if signature_chunk.present?
+ msg.signature = signature_chunk
+ y.yield msg
+ end
- signed_text_io = binary_stringio(signed_text)
- loop do
- chunk = signed_text_io.read(Gitlab.config.git.write_buffer_size)
- break if chunk.nil?
+ if signed_text_chunk.present?
+ msg.signed_text = signed_text_chunk
+ y.yield msg
+ end
- y.yield Gitaly::ExtractCommitSignatureResponse.new(signed_text: chunk)
+ msg = Gitaly::GetCommitSignaturesResponse.new
+ end
end
end
end
end
+
+ private
+
+ # yields either signature chunks or signed_text chunks to the passed block
+ def each_commit_signature_chunk(repository, commit_id)
+ raise ArgumentError.new("expected a block") unless block_given?
+
+ begin
+ signature_text, signed_text = Rugged::Commit.extract_signature(repository.rugged, commit_id)
+ rescue Rugged::InvalidError
+ raise GRPC::InvalidArgument.new("commit lookup failed for #{commit_id.inspect}")
+ rescue Rugged::OdbError
+ # The client does not care if the commit does not exist
+ return
+ end
+
+ signature_text_io = binary_stringio(signature_text)
+ loop do
+ chunk = signature_text_io.read(Gitlab.config.git.write_buffer_size)
+ break if chunk.nil?
+
+ yield chunk, nil
+ end
+
+ signed_text_io = binary_stringio(signed_text)
+ loop do
+ chunk = signed_text_io.read(Gitlab.config.git.write_buffer_size)
+ break if chunk.nil?
+
+ yield nil, chunk
+ end
+ end
end
end
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
index 63cd8847a..359ee08a7 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
@@ -1 +1 @@
-0.86.0
+0.87.0
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
index 6f878fd35..28190a135 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
@@ -69,6 +69,8 @@ It has these top-level messages:
FilterShasWithSignaturesResponse
ExtractCommitSignatureRequest
ExtractCommitSignatureResponse
+ GetCommitSignaturesRequest
+ GetCommitSignaturesResponse
ListConflictFilesRequest
ConflictFileHeader
ConflictFile
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go
index 75121086a..1ddd03322 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go
@@ -1173,6 +1173,64 @@ func (m *ExtractCommitSignatureResponse) GetSignedText() []byte {
return nil
}
+type GetCommitSignaturesRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+ CommitIds []string `protobuf:"bytes,2,rep,name=commit_ids,json=commitIds" json:"commit_ids,omitempty"`
+}
+
+func (m *GetCommitSignaturesRequest) Reset() { *m = GetCommitSignaturesRequest{} }
+func (m *GetCommitSignaturesRequest) String() string { return proto.CompactTextString(m) }
+func (*GetCommitSignaturesRequest) ProtoMessage() {}
+func (*GetCommitSignaturesRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{35} }
+
+func (m *GetCommitSignaturesRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+func (m *GetCommitSignaturesRequest) GetCommitIds() []string {
+ if m != nil {
+ return m.CommitIds
+ }
+ return nil
+}
+
+type GetCommitSignaturesResponse struct {
+ // Only present for a new commit signature data.
+ CommitId string `protobuf:"bytes,1,opt,name=commit_id,json=commitId" json:"commit_id,omitempty"`
+ // See ExtractCommitSignatureResponse above for how these fields should be handled.
+ Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
+ SignedText []byte `protobuf:"bytes,3,opt,name=signed_text,json=signedText,proto3" json:"signed_text,omitempty"`
+}
+
+func (m *GetCommitSignaturesResponse) Reset() { *m = GetCommitSignaturesResponse{} }
+func (m *GetCommitSignaturesResponse) String() string { return proto.CompactTextString(m) }
+func (*GetCommitSignaturesResponse) ProtoMessage() {}
+func (*GetCommitSignaturesResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{36} }
+
+func (m *GetCommitSignaturesResponse) GetCommitId() string {
+ if m != nil {
+ return m.CommitId
+ }
+ return ""
+}
+
+func (m *GetCommitSignaturesResponse) GetSignature() []byte {
+ if m != nil {
+ return m.Signature
+ }
+ return nil
+}
+
+func (m *GetCommitSignaturesResponse) GetSignedText() []byte {
+ if m != nil {
+ return m.SignedText
+ }
+ return nil
+}
+
func init() {
proto.RegisterType((*CommitStatsRequest)(nil), "gitaly.CommitStatsRequest")
proto.RegisterType((*CommitStatsResponse)(nil), "gitaly.CommitStatsResponse")
@@ -1210,6 +1268,8 @@ func init() {
proto.RegisterType((*FilterShasWithSignaturesResponse)(nil), "gitaly.FilterShasWithSignaturesResponse")
proto.RegisterType((*ExtractCommitSignatureRequest)(nil), "gitaly.ExtractCommitSignatureRequest")
proto.RegisterType((*ExtractCommitSignatureResponse)(nil), "gitaly.ExtractCommitSignatureResponse")
+ proto.RegisterType((*GetCommitSignaturesRequest)(nil), "gitaly.GetCommitSignaturesRequest")
+ proto.RegisterType((*GetCommitSignaturesResponse)(nil), "gitaly.GetCommitSignaturesResponse")
proto.RegisterEnum("gitaly.TreeEntryResponse_ObjectType", TreeEntryResponse_ObjectType_name, TreeEntryResponse_ObjectType_value)
proto.RegisterEnum("gitaly.TreeEntry_EntryType", TreeEntry_EntryType_name, TreeEntry_EntryType_value)
proto.RegisterEnum("gitaly.FindAllCommitsRequest_Order", FindAllCommitsRequest_Order_name, FindAllCommitsRequest_Order_value)
@@ -1247,6 +1307,7 @@ type CommitServiceClient interface {
// arbitrarily large and signature verification is impossible without the
// full text.
ExtractCommitSignature(ctx context.Context, in *ExtractCommitSignatureRequest, opts ...grpc.CallOption) (CommitService_ExtractCommitSignatureClient, error)
+ GetCommitSignatures(ctx context.Context, in *GetCommitSignaturesRequest, opts ...grpc.CallOption) (CommitService_GetCommitSignaturesClient, error)
}
type commitServiceClient struct {
@@ -1662,6 +1723,38 @@ func (x *commitServiceExtractCommitSignatureClient) Recv() (*ExtractCommitSignat
return m, nil
}
+func (c *commitServiceClient) GetCommitSignatures(ctx context.Context, in *GetCommitSignaturesRequest, opts ...grpc.CallOption) (CommitService_GetCommitSignaturesClient, error) {
+ stream, err := grpc.NewClientStream(ctx, &_CommitService_serviceDesc.Streams[11], c.cc, "/gitaly.CommitService/GetCommitSignatures", opts...)
+ if err != nil {
+ return nil, err
+ }
+ x := &commitServiceGetCommitSignaturesClient{stream}
+ if err := x.ClientStream.SendMsg(in); err != nil {
+ return nil, err
+ }
+ if err := x.ClientStream.CloseSend(); err != nil {
+ return nil, err
+ }
+ return x, nil
+}
+
+type CommitService_GetCommitSignaturesClient interface {
+ Recv() (*GetCommitSignaturesResponse, error)
+ grpc.ClientStream
+}
+
+type commitServiceGetCommitSignaturesClient struct {
+ grpc.ClientStream
+}
+
+func (x *commitServiceGetCommitSignaturesClient) Recv() (*GetCommitSignaturesResponse, error) {
+ m := new(GetCommitSignaturesResponse)
+ if err := x.ClientStream.RecvMsg(m); err != nil {
+ return nil, err
+ }
+ return m, nil
+}
+
// Server API for CommitService service
type CommitServiceServer interface {
@@ -1686,6 +1779,7 @@ type CommitServiceServer interface {
// arbitrarily large and signature verification is impossible without the
// full text.
ExtractCommitSignature(*ExtractCommitSignatureRequest, CommitService_ExtractCommitSignatureServer) error
+ GetCommitSignatures(*GetCommitSignaturesRequest, CommitService_GetCommitSignaturesServer) error
}
func RegisterCommitServiceServer(s *grpc.Server, srv CommitServiceServer) {
@@ -2036,6 +2130,27 @@ func (x *commitServiceExtractCommitSignatureServer) Send(m *ExtractCommitSignatu
return x.ServerStream.SendMsg(m)
}
+func _CommitService_GetCommitSignatures_Handler(srv interface{}, stream grpc.ServerStream) error {
+ m := new(GetCommitSignaturesRequest)
+ if err := stream.RecvMsg(m); err != nil {
+ return err
+ }
+ return srv.(CommitServiceServer).GetCommitSignatures(m, &commitServiceGetCommitSignaturesServer{stream})
+}
+
+type CommitService_GetCommitSignaturesServer interface {
+ Send(*GetCommitSignaturesResponse) error
+ grpc.ServerStream
+}
+
+type commitServiceGetCommitSignaturesServer struct {
+ grpc.ServerStream
+}
+
+func (x *commitServiceGetCommitSignaturesServer) Send(m *GetCommitSignaturesResponse) error {
+ return x.ServerStream.SendMsg(m)
+}
+
var _CommitService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.CommitService",
HandlerType: (*CommitServiceServer)(nil),
@@ -2122,6 +2237,11 @@ var _CommitService_serviceDesc = grpc.ServiceDesc{
Handler: _CommitService_ExtractCommitSignature_Handler,
ServerStreams: true,
},
+ {
+ StreamName: "GetCommitSignatures",
+ Handler: _CommitService_GetCommitSignatures_Handler,
+ ServerStreams: true,
+ },
},
Metadata: "commit.proto",
}
@@ -2129,104 +2249,108 @@ var _CommitService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("commit.proto", fileDescriptor1) }
var fileDescriptor1 = []byte{
- // 1576 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xdd, 0x6e, 0x1a, 0x47,
- 0x14, 0xf6, 0x82, 0xc1, 0x70, 0xa0, 0x0e, 0x9e, 0xfc, 0xe1, 0xb5, 0x13, 0x3b, 0xdb, 0x26, 0x75,
- 0x94, 0x8a, 0x58, 0x54, 0xad, 0xda, 0xab, 0xca, 0x4e, 0xb0, 0xeb, 0xd4, 0x0e, 0xd1, 0x1a, 0x29,
- 0x4a, 0x6f, 0xd0, 0x98, 0x1d, 0x60, 0xea, 0x85, 0x25, 0xbb, 0x83, 0x6d, 0x7a, 0xd1, 0xfb, 0x4a,
- 0x7d, 0x81, 0xbe, 0x42, 0xa5, 0x3e, 0x44, 0x5f, 0xa1, 0x8f, 0xd1, 0x47, 0x88, 0x7a, 0x51, 0xcd,
- 0xcf, 0xee, 0x2c, 0xb0, 0x38, 0x8d, 0x2d, 0x72, 0x83, 0x76, 0xce, 0xcc, 0x9c, 0xf3, 0x9d, 0x33,
- 0xe7, 0x17, 0x28, 0xb6, 0xbc, 0x5e, 0x8f, 0xb2, 0xca, 0xc0, 0xf7, 0x98, 0x87, 0xb2, 0x1d, 0xca,
- 0xb0, 0x3b, 0x32, 0x8b, 0x41, 0x17, 0xfb, 0xc4, 0x91, 0x54, 0x73, 0xa3, 0xe3, 0x79, 0x1d, 0x97,
- 0x3c, 0x15, 0xab, 0x93, 0x61, 0xfb, 0x29, 0xa3, 0x3d, 0x12, 0x30, 0xdc, 0x1b, 0xc8, 0x03, 0x96,
- 0x03, 0xe8, 0x99, 0x60, 0x73, 0xcc, 0x30, 0x0b, 0x6c, 0xf2, 0x76, 0x48, 0x02, 0x86, 0xaa, 0x00,
- 0x3e, 0x19, 0x78, 0x01, 0x65, 0x9e, 0x3f, 0x2a, 0x1b, 0x9b, 0xc6, 0x56, 0xa1, 0x8a, 0x2a, 0x52,
- 0x42, 0xc5, 0x8e, 0x76, 0xec, 0xd8, 0x29, 0x64, 0x42, 0xce, 0x27, 0x67, 0x34, 0xa0, 0x5e, 0xbf,
- 0x9c, 0xda, 0x34, 0xb6, 0x8a, 0x76, 0xb4, 0xb6, 0x5a, 0x70, 0x73, 0x4c, 0x4a, 0x30, 0xf0, 0xfa,
- 0x01, 0x41, 0x25, 0x48, 0x7b, 0xd4, 0x11, 0xfc, 0xf3, 0x36, 0xff, 0x44, 0xeb, 0x90, 0xc7, 0x8e,
- 0x43, 0x19, 0xf5, 0xfa, 0x81, 0xe0, 0x92, 0xb1, 0x35, 0x81, 0xef, 0x3a, 0xc4, 0x25, 0x72, 0x37,
- 0x2d, 0x77, 0x23, 0x82, 0xf5, 0xab, 0x01, 0x77, 0xa5, 0x94, 0x83, 0x60, 0xa7, 0xdf, 0x22, 0x01,
- 0xf3, 0xfc, 0xeb, 0x28, 0xb4, 0x01, 0x05, 0xac, 0xd8, 0x34, 0xa9, 0x23, 0xd0, 0xe4, 0x6d, 0x08,
- 0x49, 0x07, 0x0e, 0x5a, 0x85, 0x5c, 0xab, 0x4b, 0x5d, 0x87, 0xef, 0xa6, 0xc5, 0xee, 0x92, 0x58,
- 0x1f, 0x38, 0xd6, 0x36, 0x94, 0xa7, 0xa1, 0x28, 0xad, 0x6f, 0x41, 0xe6, 0x0c, 0xbb, 0x43, 0x22,
- 0x60, 0xe4, 0x6c, 0xb9, 0xb0, 0x7e, 0x33, 0xa0, 0xd4, 0xf0, 0x09, 0xa9, 0xf5, 0x99, 0x3f, 0x9a,
- 0xd3, 0x3b, 0x20, 0x04, 0x8b, 0x03, 0xcc, 0xba, 0x02, 0x6d, 0xd1, 0x16, 0xdf, 0x1c, 0x8e, 0x4b,
- 0x7b, 0x94, 0x95, 0x17, 0x37, 0x8d, 0xad, 0xb4, 0x2d, 0x17, 0xd6, 0xdf, 0x06, 0xac, 0xc4, 0xe0,
- 0x28, 0xe8, 0xdf, 0xc0, 0x22, 0x1b, 0x0d, 0x24, 0xf2, 0xe5, 0xea, 0x67, 0x21, 0x92, 0xa9, 0x83,
- 0x95, 0xfa, 0xc9, 0x4f, 0xa4, 0xc5, 0x1a, 0xa3, 0x01, 0xb1, 0xc5, 0x8d, 0xf0, 0xa9, 0x53, 0xfa,
- 0xa9, 0x11, 0x2c, 0x06, 0xf4, 0x67, 0x22, 0xb0, 0xa4, 0x6d, 0xf1, 0xcd, 0x69, 0x3d, 0xcf, 0x21,
- 0x02, 0x4a, 0xc6, 0x16, 0xdf, 0x9c, 0xe6, 0x60, 0x86, 0xcb, 0x19, 0x89, 0x99, 0x7f, 0x5b, 0x5f,
- 0x01, 0x68, 0x09, 0x08, 0x20, 0xfb, 0xac, 0x7e, 0x74, 0x74, 0xd0, 0x28, 0x2d, 0xa0, 0x1c, 0x2c,
- 0xee, 0x1e, 0xd6, 0x77, 0x4b, 0x06, 0xff, 0x6a, 0xd8, 0xb5, 0x5a, 0x29, 0x85, 0x96, 0x20, 0xdd,
- 0xd8, 0xd9, 0x2f, 0xa5, 0x2d, 0x0f, 0x6e, 0xcb, 0x57, 0x09, 0x76, 0x09, 0x3b, 0x27, 0xa4, 0x7f,
- 0x1d, 0x3b, 0x23, 0x58, 0x6c, 0xfb, 0x5e, 0x4f, 0xd9, 0x58, 0x7c, 0xa3, 0x65, 0x48, 0x31, 0x4f,
- 0x59, 0x37, 0xc5, 0x3c, 0xab, 0x06, 0x77, 0x26, 0x05, 0x2a, 0x4b, 0x3e, 0x81, 0x25, 0x19, 0xbe,
- 0x41, 0xd9, 0xd8, 0x4c, 0x6f, 0x15, 0xaa, 0x2b, 0xa1, 0xb8, 0x7d, 0xca, 0xe4, 0x1d, 0x3b, 0x3c,
- 0x61, 0xfd, 0x6b, 0xf0, 0xf8, 0x19, 0xf6, 0xd5, 0xc6, 0xbc, 0xc2, 0x14, 0x6d, 0x43, 0x06, 0xb7,
- 0x19, 0xf1, 0x85, 0x06, 0x85, 0xaa, 0x59, 0x91, 0xd9, 0xa3, 0x12, 0x66, 0x8f, 0x4a, 0x23, 0xcc,
- 0x1e, 0xb6, 0x3c, 0x88, 0xaa, 0x90, 0x3d, 0x21, 0x6d, 0xcf, 0x97, 0x4f, 0x76, 0xf9, 0x15, 0x75,
- 0x32, 0x72, 0xc2, 0x4c, 0xcc, 0x09, 0xd7, 0x20, 0xdf, 0xc3, 0x17, 0xcd, 0x16, 0x57, 0xb2, 0x9c,
- 0x15, 0xaf, 0x9f, 0xeb, 0xe1, 0x0b, 0xa1, 0xb4, 0xf5, 0x05, 0xdc, 0x1a, 0xd7, 0x5e, 0x07, 0x92,
- 0xbc, 0x60, 0x88, 0x0b, 0x72, 0x61, 0xbd, 0x33, 0x20, 0x1f, 0x39, 0x64, 0x42, 0x8a, 0x59, 0x85,
- 0x9c, 0xef, 0x79, 0xac, 0xa9, 0xdd, 0x71, 0x89, 0xaf, 0xeb, 0xd2, 0x25, 0xa7, 0xc2, 0xe3, 0xa9,
- 0x72, 0xf9, 0x45, 0xe1, 0xf2, 0x6b, 0x53, 0x2e, 0x5f, 0x11, 0xbf, 0x31, 0x4f, 0x0f, 0x7d, 0x38,
- 0x13, 0xf3, 0xe1, 0x7b, 0x00, 0xf2, 0x2d, 0x85, 0xd4, 0xac, 0x90, 0x9a, 0x97, 0x14, 0x2e, 0x77,
- 0x0d, 0xf2, 0x6d, 0x17, 0xb3, 0xa6, 0x10, 0xbe, 0x24, 0x1f, 0x85, 0x13, 0x5e, 0x61, 0xd6, 0xb5,
- 0x9e, 0x40, 0x3e, 0x12, 0x11, 0xb9, 0xf7, 0x42, 0xe4, 0xde, 0x46, 0xcc, 0xfd, 0xd3, 0xd6, 0xef,
- 0x06, 0xdc, 0xde, 0x27, 0x2c, 0x44, 0x47, 0x49, 0xf0, 0x31, 0x53, 0xc9, 0x3a, 0xe4, 0x7d, 0xd2,
- 0x1a, 0xfa, 0x01, 0x3d, 0x93, 0x06, 0xcb, 0xd9, 0x9a, 0xc0, 0x83, 0x61, 0x12, 0x9a, 0x0e, 0x06,
- 0x22, 0x49, 0x93, 0xc1, 0xa0, 0x33, 0x4b, 0x78, 0xc2, 0x3a, 0x81, 0xd2, 0x21, 0x0d, 0xd8, 0x1e,
- 0x75, 0xe7, 0xa6, 0x9c, 0xf5, 0x18, 0x56, 0x62, 0x32, 0xb4, 0xbb, 0x71, 0x2d, 0x25, 0xc6, 0xa2,
- 0x2d, 0x17, 0x56, 0x0b, 0x56, 0xf6, 0x68, 0xdf, 0x51, 0x21, 0x3b, 0x27, 0x3c, 0xdf, 0x01, 0x8a,
- 0x0b, 0x51, 0x80, 0x1e, 0x43, 0x56, 0xfa, 0x90, 0x92, 0x90, 0x90, 0x42, 0xd4, 0x01, 0xab, 0x09,
- 0x77, 0xb9, 0x42, 0x61, 0x32, 0x1a, 0xd5, 0xa9, 0x73, 0x1d, 0xac, 0x51, 0x36, 0x4f, 0xab, 0xa8,
- 0xb2, 0xf6, 0xa1, 0x3c, 0x2d, 0xe0, 0x2a, 0xb9, 0xee, 0x9d, 0x01, 0xb7, 0xb9, 0xae, 0x3b, 0xae,
- 0x3b, 0xe7, 0x6c, 0x37, 0x96, 0x73, 0xd2, 0xe3, 0x39, 0x47, 0x54, 0xa7, 0x53, 0x3a, 0x08, 0x2b,
- 0x11, 0xff, 0x46, 0xdf, 0x42, 0xc6, 0xf3, 0x1d, 0xe2, 0x8b, 0xd0, 0x5e, 0xae, 0x7e, 0x1a, 0xca,
- 0x4e, 0x84, 0x5b, 0xa9, 0xf3, 0xa3, 0xb6, 0xbc, 0x61, 0x3d, 0x84, 0x8c, 0x58, 0xf3, 0xb0, 0x7d,
- 0x59, 0x7f, 0x59, 0x53, 0x01, 0x5c, 0x7f, 0x55, 0x97, 0x95, 0xea, 0xf9, 0x4e, 0xa3, 0x56, 0x4a,
- 0xf1, 0x10, 0x99, 0x64, 0x76, 0x15, 0x1b, 0xfe, 0x93, 0x8a, 0xfb, 0xcb, 0xdc, 0x0c, 0x18, 0x75,
- 0x0e, 0xd2, 0x78, 0x72, 0x81, 0xee, 0x40, 0xd6, 0x6b, 0xb7, 0x03, 0xc2, 0x94, 0xed, 0xd4, 0x4a,
- 0x87, 0x4f, 0x26, 0x16, 0x3e, 0xfc, 0x74, 0xdb, 0x73, 0x5d, 0xef, 0x5c, 0x64, 0xc5, 0x9c, 0xad,
- 0x56, 0xbc, 0xf9, 0xe2, 0x36, 0x6f, 0xf6, 0x88, 0xdf, 0x21, 0x81, 0x48, 0x8a, 0x39, 0x1b, 0x38,
- 0xe9, 0x48, 0x50, 0xd0, 0x03, 0x28, 0x3a, 0x34, 0xc0, 0x27, 0x2e, 0x69, 0x9e, 0x63, 0xf7, 0xb4,
- 0x9c, 0x13, 0x27, 0x0a, 0x8a, 0xf6, 0x1a, 0xbb, 0xa7, 0xba, 0x9c, 0xe5, 0x3f, 0xbc, 0x9c, 0xc1,
- 0xff, 0x2d, 0x67, 0xd6, 0x2e, 0xdc, 0x1c, 0xb3, 0xf5, 0x55, 0x1e, 0xac, 0x1b, 0xf6, 0x09, 0x87,
- 0xb8, 0xdf, 0x19, 0xe2, 0xce, 0xfc, 0x32, 0xdb, 0x9f, 0x51, 0x93, 0x1c, 0x13, 0xa5, 0x20, 0xef,
- 0x41, 0xde, 0x0d, 0x89, 0x0a, 0xf4, 0x56, 0x28, 0x6a, 0xc6, 0x9d, 0x4a, 0x48, 0xb1, 0xf5, 0x55,
- 0xf3, 0x05, 0xe4, 0x42, 0x32, 0x8f, 0xa3, 0x3e, 0xee, 0x11, 0x55, 0x80, 0xc5, 0x37, 0xf7, 0x04,
- 0x31, 0xa4, 0x08, 0x70, 0x29, 0x5b, 0x2e, 0x64, 0x35, 0x77, 0x3d, 0x5f, 0xb5, 0xd2, 0x72, 0x61,
- 0x0d, 0xe1, 0x86, 0x8d, 0xcf, 0x77, 0x5d, 0xdc, 0x23, 0x1f, 0xb1, 0x92, 0x59, 0x8f, 0xa0, 0xa4,
- 0xc5, 0x2a, 0xf3, 0x84, 0x8d, 0xa8, 0x11, 0x6b, 0x44, 0x7f, 0x81, 0xf2, 0x21, 0x0e, 0xd3, 0xde,
- 0x9e, 0xe7, 0xf3, 0x8a, 0xfd, 0x31, 0x71, 0xee, 0xc1, 0x6a, 0x82, 0xfc, 0x0f, 0xaf, 0x0f, 0x7f,
- 0x45, 0x6e, 0x11, 0xec, 0x8e, 0x8e, 0x48, 0x10, 0xf0, 0x27, 0x9d, 0x93, 0x1e, 0x3a, 0x41, 0xa4,
- 0x27, 0x13, 0x84, 0x1e, 0x44, 0xa2, 0x74, 0x92, 0xd4, 0x2d, 0xde, 0x82, 0xcc, 0xdb, 0x21, 0xf1,
- 0x47, 0xaa, 0x93, 0x92, 0x0b, 0x5e, 0x82, 0xa6, 0x55, 0xb8, 0x4a, 0x34, 0x52, 0xd8, 0xd8, 0xa3,
- 0x2e, 0x23, 0xfe, 0x71, 0x17, 0x07, 0xaf, 0x29, 0xeb, 0x1e, 0xd3, 0x4e, 0x1f, 0xb3, 0xa1, 0x7f,
- 0xbd, 0xb0, 0xe4, 0x25, 0xa5, 0x8b, 0x03, 0x51, 0x35, 0x8b, 0xb6, 0xf8, 0xb6, 0xbe, 0x86, 0xcd,
- 0xd9, 0xa2, 0xb4, 0xdf, 0x89, 0x7b, 0x46, 0xec, 0xde, 0x00, 0xee, 0xd5, 0x2e, 0x98, 0x8f, 0x5b,
- 0x0a, 0x7c, 0x74, 0xed, 0x3a, 0x00, 0xd7, 0x40, 0xf5, 0xa4, 0x7a, 0xdc, 0xcd, 0x49, 0xc2, 0x81,
- 0x63, 0x35, 0xe1, 0xfe, 0x2c, 0x89, 0x0a, 0xe7, 0x3a, 0xe4, 0x83, 0x90, 0xa8, 0x82, 0x44, 0x13,
- 0x44, 0x42, 0xa7, 0x9d, 0x3e, 0x71, 0x9a, 0x8c, 0x5c, 0x30, 0xe5, 0x14, 0x20, 0x49, 0x0d, 0x72,
- 0xc1, 0xaa, 0x7f, 0x14, 0xe0, 0x13, 0xc5, 0x9a, 0xf8, 0x67, 0xb4, 0x45, 0xd0, 0x6b, 0x28, 0x4d,
- 0x0e, 0xd1, 0x68, 0x63, 0x3c, 0x21, 0x4d, 0x4d, 0xfa, 0xe6, 0xe6, 0xec, 0x03, 0x12, 0xa7, 0xb5,
- 0x80, 0x9e, 0xc7, 0x27, 0x84, 0x72, 0xc2, 0x14, 0x2b, 0x59, 0xad, 0xce, 0x9c, 0x6f, 0xad, 0x85,
- 0x6d, 0x03, 0x1d, 0xc3, 0xf2, 0xf8, 0x70, 0x87, 0xee, 0x8d, 0xcb, 0x9e, 0x98, 0x32, 0xcd, 0xfb,
- 0xb3, 0xb6, 0x63, 0x4c, 0x7f, 0x80, 0x62, 0x7c, 0xd6, 0x41, 0x6b, 0xfa, 0xce, 0xd4, 0xfc, 0x67,
- 0xae, 0x27, 0x6f, 0x46, 0x7a, 0x1e, 0xc3, 0xf2, 0x78, 0xc7, 0xad, 0x11, 0x26, 0x0e, 0x09, 0x1a,
- 0x61, 0x72, 0xa3, 0x2e, 0x10, 0x3e, 0x87, 0x7c, 0xd4, 0x1b, 0x6b, 0xe3, 0x4d, 0xb6, 0xe4, 0xda,
- 0x78, 0x53, 0x8d, 0xb4, 0xe0, 0x52, 0x03, 0xd0, 0x55, 0x13, 0xad, 0xc6, 0x5b, 0xa9, 0xb1, 0x56,
- 0xda, 0x34, 0x93, 0xb6, 0x22, 0x0d, 0xbf, 0x87, 0x42, 0xec, 0x8f, 0x25, 0x64, 0x8e, 0x5b, 0x38,
- 0xfe, 0x9f, 0x96, 0xb9, 0x96, 0xb8, 0x17, 0xb7, 0xd5, 0x78, 0xeb, 0xa5, 0x6d, 0x95, 0xd8, 0xdf,
- 0x69, 0x5b, 0x25, 0x77, 0x6c, 0x42, 0xcb, 0x17, 0x50, 0x88, 0xf5, 0x06, 0x28, 0x41, 0x97, 0x69,
- 0x78, 0x09, 0xcd, 0x84, 0xe0, 0xd5, 0x80, 0x1b, 0x13, 0x45, 0x18, 0xdd, 0x9f, 0x59, 0x9d, 0x25,
- 0xcf, 0x8d, 0xf7, 0x54, 0x6f, 0x6b, 0x01, 0xed, 0x40, 0x2e, 0x2c, 0x74, 0xe8, 0x6e, 0x94, 0x1f,
- 0xc6, 0x2b, 0xae, 0x59, 0x9e, 0xde, 0x88, 0x01, 0xfb, 0x11, 0x56, 0xa6, 0x6a, 0x10, 0x8a, 0xc2,
- 0x70, 0x56, 0x79, 0x34, 0x1f, 0x5c, 0x72, 0x22, 0x82, 0xf7, 0x26, 0x4c, 0x01, 0x3a, 0xa7, 0x4f,
- 0xa6, 0x80, 0xa9, 0x82, 0x35, 0x99, 0x02, 0xa6, 0xcb, 0x81, 0x80, 0xfd, 0x46, 0xce, 0x91, 0xf1,
- 0x89, 0x45, 0xb3, 0x9e, 0x31, 0x2c, 0x69, 0xd6, 0xb3, 0x86, 0x1d, 0xc1, 0x3a, 0x80, 0xf2, 0xac,
- 0xac, 0x8e, 0x3e, 0xd7, 0xef, 0x7c, 0x69, 0x89, 0x31, 0xb7, 0xde, 0x7f, 0x30, 0x14, 0xb9, 0x65,
- 0x6c, 0x1b, 0xe8, 0x14, 0xee, 0x24, 0x27, 0x68, 0xf4, 0x30, 0xe4, 0x74, 0x69, 0xc9, 0x30, 0x1f,
- 0xbd, 0xef, 0x98, 0xd6, 0xf0, 0x24, 0x2b, 0x1a, 0xe2, 0x2f, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff,
- 0xd1, 0x28, 0x6e, 0x33, 0x84, 0x16, 0x00, 0x00,
+ // 1640 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xdd, 0x4e, 0x1b, 0x49,
+ 0x16, 0xa6, 0x6d, 0x6c, 0xec, 0x83, 0x97, 0x98, 0xca, 0x9f, 0x69, 0x48, 0x20, 0x95, 0x4d, 0x96,
+ 0x28, 0x2b, 0x07, 0x79, 0xb5, 0xab, 0xdd, 0xab, 0x15, 0x24, 0x86, 0x25, 0x0b, 0x71, 0xd4, 0x58,
+ 0x8a, 0xb2, 0x37, 0x56, 0xe3, 0x2e, 0xdb, 0xb5, 0xb4, 0xdd, 0x4e, 0x77, 0x19, 0xf0, 0x5c, 0xcc,
+ 0xfd, 0x48, 0xa3, 0xb9, 0x9f, 0x87, 0x98, 0x87, 0x98, 0x57, 0x98, 0xc7, 0x98, 0x47, 0x88, 0xe6,
+ 0x62, 0x54, 0x3f, 0xdd, 0xd5, 0x6d, 0xb7, 0x61, 0x02, 0x72, 0x6e, 0xac, 0xae, 0x53, 0xa7, 0xea,
+ 0x7c, 0xe7, 0xd4, 0xf9, 0x35, 0x94, 0xda, 0x5e, 0xbf, 0x4f, 0x59, 0x75, 0xe8, 0x7b, 0xcc, 0x43,
+ 0xf9, 0x2e, 0x65, 0xb6, 0x3b, 0x36, 0x4b, 0x41, 0xcf, 0xf6, 0x89, 0x23, 0xa9, 0xe6, 0x66, 0xd7,
+ 0xf3, 0xba, 0x2e, 0x79, 0x25, 0x56, 0xa7, 0xa3, 0xce, 0x2b, 0x46, 0xfb, 0x24, 0x60, 0x76, 0x7f,
+ 0x28, 0x19, 0xb0, 0x03, 0xe8, 0xb5, 0xb8, 0xe6, 0x84, 0xd9, 0x2c, 0xb0, 0xc8, 0xa7, 0x11, 0x09,
+ 0x18, 0xaa, 0x01, 0xf8, 0x64, 0xe8, 0x05, 0x94, 0x79, 0xfe, 0xb8, 0x62, 0x6c, 0x19, 0xdb, 0xcb,
+ 0x35, 0x54, 0x95, 0x12, 0xaa, 0x56, 0xb4, 0x63, 0xc5, 0xb8, 0x90, 0x09, 0x05, 0x9f, 0x9c, 0xd3,
+ 0x80, 0x7a, 0x83, 0x4a, 0x66, 0xcb, 0xd8, 0x2e, 0x59, 0xd1, 0x1a, 0xb7, 0xe1, 0x6e, 0x42, 0x4a,
+ 0x30, 0xf4, 0x06, 0x01, 0x41, 0x65, 0xc8, 0x7a, 0xd4, 0x11, 0xf7, 0x17, 0x2d, 0xfe, 0x89, 0x36,
+ 0xa0, 0x68, 0x3b, 0x0e, 0x65, 0xd4, 0x1b, 0x04, 0xe2, 0x96, 0x9c, 0xa5, 0x09, 0x7c, 0xd7, 0x21,
+ 0x2e, 0x91, 0xbb, 0x59, 0xb9, 0x1b, 0x11, 0xf0, 0x77, 0x06, 0x3c, 0x94, 0x52, 0x0e, 0x83, 0xdd,
+ 0x41, 0x9b, 0x04, 0xcc, 0xf3, 0x6f, 0xa3, 0xd0, 0x26, 0x2c, 0xdb, 0xea, 0x9a, 0x16, 0x75, 0x04,
+ 0x9a, 0xa2, 0x05, 0x21, 0xe9, 0xd0, 0x41, 0x6b, 0x50, 0x68, 0xf7, 0xa8, 0xeb, 0xf0, 0xdd, 0xac,
+ 0xd8, 0x5d, 0x12, 0xeb, 0x43, 0x07, 0xef, 0x40, 0x65, 0x1a, 0x8a, 0xd2, 0xfa, 0x1e, 0xe4, 0xce,
+ 0x6d, 0x77, 0x44, 0x04, 0x8c, 0x82, 0x25, 0x17, 0xf8, 0x7b, 0x03, 0xca, 0x4d, 0x9f, 0x90, 0xfa,
+ 0x80, 0xf9, 0xe3, 0x39, 0xbd, 0x03, 0x42, 0xb0, 0x38, 0xb4, 0x59, 0x4f, 0xa0, 0x2d, 0x59, 0xe2,
+ 0x9b, 0xc3, 0x71, 0x69, 0x9f, 0xb2, 0xca, 0xe2, 0x96, 0xb1, 0x9d, 0xb5, 0xe4, 0x02, 0xff, 0x62,
+ 0xc0, 0x6a, 0x0c, 0x8e, 0x82, 0xfe, 0x4f, 0x58, 0x64, 0xe3, 0xa1, 0x44, 0xbe, 0x52, 0xfb, 0x73,
+ 0x88, 0x64, 0x8a, 0xb1, 0xda, 0x38, 0xfd, 0x3f, 0x69, 0xb3, 0xe6, 0x78, 0x48, 0x2c, 0x71, 0x22,
+ 0x7c, 0xea, 0x8c, 0x7e, 0x6a, 0x04, 0x8b, 0x01, 0xfd, 0x86, 0x08, 0x2c, 0x59, 0x4b, 0x7c, 0x73,
+ 0x5a, 0xdf, 0x73, 0x88, 0x80, 0x92, 0xb3, 0xc4, 0x37, 0xa7, 0x39, 0x36, 0xb3, 0x2b, 0x39, 0x89,
+ 0x99, 0x7f, 0xe3, 0xbf, 0x03, 0x68, 0x09, 0x08, 0x20, 0xff, 0xba, 0x71, 0x7c, 0x7c, 0xd8, 0x2c,
+ 0x2f, 0xa0, 0x02, 0x2c, 0xee, 0x1d, 0x35, 0xf6, 0xca, 0x06, 0xff, 0x6a, 0x5a, 0xf5, 0x7a, 0x39,
+ 0x83, 0x96, 0x20, 0xdb, 0xdc, 0x3d, 0x28, 0x67, 0xb1, 0x07, 0xf7, 0xe5, 0xab, 0x04, 0x7b, 0x84,
+ 0x5d, 0x10, 0x32, 0xb8, 0x8d, 0x9d, 0x11, 0x2c, 0x76, 0x7c, 0xaf, 0xaf, 0x6c, 0x2c, 0xbe, 0xd1,
+ 0x0a, 0x64, 0x98, 0xa7, 0xac, 0x9b, 0x61, 0x1e, 0xae, 0xc3, 0x83, 0x49, 0x81, 0xca, 0x92, 0x2f,
+ 0x61, 0x49, 0x86, 0x6f, 0x50, 0x31, 0xb6, 0xb2, 0xdb, 0xcb, 0xb5, 0xd5, 0x50, 0xdc, 0x01, 0x65,
+ 0xf2, 0x8c, 0x15, 0x72, 0xe0, 0xdf, 0x0c, 0x1e, 0x3f, 0xa3, 0x81, 0xda, 0x98, 0x57, 0x98, 0xa2,
+ 0x1d, 0xc8, 0xd9, 0x1d, 0x46, 0x7c, 0xa1, 0xc1, 0x72, 0xcd, 0xac, 0xca, 0xec, 0x51, 0x0d, 0xb3,
+ 0x47, 0xb5, 0x19, 0x66, 0x0f, 0x4b, 0x32, 0xa2, 0x1a, 0xe4, 0x4f, 0x49, 0xc7, 0xf3, 0xe5, 0x93,
+ 0x5d, 0x7d, 0x44, 0x71, 0x46, 0x4e, 0x98, 0x8b, 0x39, 0xe1, 0x3a, 0x14, 0xfb, 0xf6, 0x65, 0xab,
+ 0xcd, 0x95, 0xac, 0xe4, 0xc5, 0xeb, 0x17, 0xfa, 0xf6, 0xa5, 0x50, 0x1a, 0xff, 0x15, 0xee, 0x25,
+ 0xb5, 0xd7, 0x81, 0x24, 0x0f, 0x18, 0xe2, 0x80, 0x5c, 0xe0, 0xcf, 0x06, 0x14, 0x23, 0x87, 0x4c,
+ 0x49, 0x31, 0x6b, 0x50, 0xf0, 0x3d, 0x8f, 0xb5, 0xb4, 0x3b, 0x2e, 0xf1, 0x75, 0x43, 0xba, 0xe4,
+ 0x54, 0x78, 0xbc, 0x52, 0x2e, 0xbf, 0x28, 0x5c, 0x7e, 0x7d, 0xca, 0xe5, 0xab, 0xe2, 0x37, 0xe6,
+ 0xe9, 0xa1, 0x0f, 0xe7, 0x62, 0x3e, 0xfc, 0x08, 0x40, 0xbe, 0xa5, 0x90, 0x9a, 0x17, 0x52, 0x8b,
+ 0x92, 0xc2, 0xe5, 0xae, 0x43, 0xb1, 0xe3, 0xda, 0xac, 0x25, 0x84, 0x2f, 0xc9, 0x47, 0xe1, 0x84,
+ 0xf7, 0x36, 0xeb, 0xe1, 0x97, 0x50, 0x8c, 0x44, 0x44, 0xee, 0xbd, 0x10, 0xb9, 0xb7, 0x11, 0x73,
+ 0xff, 0x2c, 0xfe, 0xd1, 0x80, 0xfb, 0x07, 0x84, 0x85, 0xe8, 0x28, 0x09, 0xbe, 0x66, 0x2a, 0xd9,
+ 0x80, 0xa2, 0x4f, 0xda, 0x23, 0x3f, 0xa0, 0xe7, 0xd2, 0x60, 0x05, 0x4b, 0x13, 0x78, 0x30, 0x4c,
+ 0x42, 0xd3, 0xc1, 0x40, 0x24, 0x69, 0x32, 0x18, 0x74, 0x66, 0x09, 0x39, 0xf0, 0x29, 0x94, 0x8f,
+ 0x68, 0xc0, 0xf6, 0xa9, 0x3b, 0x37, 0xe5, 0xf0, 0x0b, 0x58, 0x8d, 0xc9, 0xd0, 0xee, 0xc6, 0xb5,
+ 0x94, 0x18, 0x4b, 0x96, 0x5c, 0xe0, 0x36, 0xac, 0xee, 0xd3, 0x81, 0xa3, 0x42, 0x76, 0x4e, 0x78,
+ 0xfe, 0x0d, 0x28, 0x2e, 0x44, 0x01, 0x7a, 0x01, 0x79, 0xe9, 0x43, 0x4a, 0x42, 0x4a, 0x0a, 0x51,
+ 0x0c, 0xb8, 0x05, 0x0f, 0xb9, 0x42, 0x61, 0x32, 0x1a, 0x37, 0xa8, 0x73, 0x1b, 0xac, 0x51, 0x36,
+ 0xcf, 0xaa, 0xa8, 0xc2, 0x07, 0x50, 0x99, 0x16, 0x70, 0x93, 0x5c, 0xf7, 0xd9, 0x80, 0xfb, 0x5c,
+ 0xd7, 0x5d, 0xd7, 0x9d, 0x73, 0xb6, 0x4b, 0xe4, 0x9c, 0x6c, 0x32, 0xe7, 0x88, 0xea, 0x74, 0x46,
+ 0x87, 0x61, 0x25, 0xe2, 0xdf, 0xe8, 0x5f, 0x90, 0xf3, 0x7c, 0x87, 0xf8, 0x22, 0xb4, 0x57, 0x6a,
+ 0x4f, 0x43, 0xd9, 0xa9, 0x70, 0xab, 0x0d, 0xce, 0x6a, 0xc9, 0x13, 0xf8, 0x19, 0xe4, 0xc4, 0x9a,
+ 0x87, 0xed, 0xbb, 0xc6, 0xbb, 0xba, 0x0a, 0xe0, 0xc6, 0xfb, 0x86, 0xac, 0x54, 0x6f, 0x76, 0x9b,
+ 0xf5, 0x72, 0x86, 0x87, 0xc8, 0xe4, 0x65, 0x37, 0xb1, 0xe1, 0xaf, 0x99, 0xb8, 0xbf, 0xcc, 0xcd,
+ 0x80, 0x51, 0xe7, 0x20, 0x8d, 0x27, 0x17, 0xe8, 0x01, 0xe4, 0xbd, 0x4e, 0x27, 0x20, 0x4c, 0xd9,
+ 0x4e, 0xad, 0x74, 0xf8, 0xe4, 0x62, 0xe1, 0xc3, 0xb9, 0x3b, 0x9e, 0xeb, 0x7a, 0x17, 0x22, 0x2b,
+ 0x16, 0x2c, 0xb5, 0xe2, 0xcd, 0x17, 0xb7, 0x79, 0xab, 0x4f, 0xfc, 0x2e, 0x09, 0x44, 0x52, 0x2c,
+ 0x58, 0xc0, 0x49, 0xc7, 0x82, 0x82, 0x9e, 0x40, 0xc9, 0xa1, 0x81, 0x7d, 0xea, 0x92, 0xd6, 0x85,
+ 0xed, 0x9e, 0x55, 0x0a, 0x82, 0x63, 0x59, 0xd1, 0x3e, 0xd8, 0xee, 0x99, 0x2e, 0x67, 0xc5, 0x2f,
+ 0x2f, 0x67, 0xf0, 0x47, 0xcb, 0x19, 0xde, 0x83, 0xbb, 0x09, 0x5b, 0xdf, 0xe4, 0xc1, 0x7a, 0x61,
+ 0x9f, 0x70, 0x64, 0x0f, 0xba, 0x23, 0xbb, 0x3b, 0xbf, 0xcc, 0xf6, 0x53, 0xd4, 0x24, 0xc7, 0x44,
+ 0x29, 0xc8, 0xfb, 0x50, 0x74, 0x43, 0xa2, 0x02, 0xbd, 0x1d, 0x8a, 0x9a, 0x71, 0xa6, 0x1a, 0x52,
+ 0x2c, 0x7d, 0xd4, 0x7c, 0x0b, 0x85, 0x90, 0xcc, 0xe3, 0x68, 0x60, 0xf7, 0x89, 0x2a, 0xc0, 0xe2,
+ 0x9b, 0x7b, 0x82, 0x18, 0x52, 0x04, 0xb8, 0x8c, 0x25, 0x17, 0xb2, 0x9a, 0xbb, 0x9e, 0xaf, 0x5a,
+ 0x69, 0xb9, 0xc0, 0x23, 0xb8, 0x63, 0xd9, 0x17, 0x7b, 0xae, 0xdd, 0x27, 0x5f, 0xb1, 0x92, 0xe1,
+ 0xe7, 0x50, 0xd6, 0x62, 0x95, 0x79, 0xc2, 0x46, 0xd4, 0x88, 0x35, 0xa2, 0xdf, 0x42, 0xe5, 0xc8,
+ 0x0e, 0xd3, 0xde, 0xbe, 0xe7, 0xf3, 0x8a, 0xfd, 0x35, 0x71, 0xee, 0xc3, 0x5a, 0x8a, 0xfc, 0x2f,
+ 0xaf, 0x0f, 0x3f, 0x47, 0x6e, 0x11, 0xec, 0x8d, 0x8f, 0x49, 0x10, 0xf0, 0x27, 0x9d, 0x93, 0x1e,
+ 0x3a, 0x41, 0x64, 0x27, 0x13, 0x84, 0x1e, 0x44, 0xa2, 0x74, 0x92, 0xd6, 0x2d, 0xde, 0x83, 0xdc,
+ 0xa7, 0x11, 0xf1, 0xc7, 0xaa, 0x93, 0x92, 0x0b, 0x5e, 0x82, 0xa6, 0x55, 0xb8, 0x49, 0x34, 0x52,
+ 0xd8, 0xdc, 0xa7, 0x2e, 0x23, 0xfe, 0x49, 0xcf, 0x0e, 0x3e, 0x50, 0xd6, 0x3b, 0xa1, 0xdd, 0x81,
+ 0xcd, 0x46, 0xfe, 0xed, 0xc2, 0x92, 0x97, 0x94, 0x9e, 0x1d, 0x88, 0xaa, 0x59, 0xb2, 0xc4, 0x37,
+ 0xfe, 0x07, 0x6c, 0xcd, 0x16, 0xa5, 0xfd, 0x4e, 0x9c, 0x33, 0x62, 0xe7, 0x86, 0xf0, 0xa8, 0x7e,
+ 0xc9, 0x7c, 0xbb, 0xad, 0xc0, 0x47, 0xc7, 0x6e, 0x03, 0x70, 0x1d, 0x54, 0x4f, 0xaa, 0xc7, 0xdd,
+ 0x82, 0x24, 0x1c, 0x3a, 0xb8, 0x05, 0x8f, 0x67, 0x49, 0x54, 0x38, 0x37, 0xa0, 0x18, 0x84, 0x44,
+ 0x15, 0x24, 0x9a, 0x20, 0x12, 0x3a, 0xed, 0x0e, 0x88, 0xd3, 0x62, 0xe4, 0x92, 0x29, 0xa7, 0x00,
+ 0x49, 0x6a, 0x92, 0x4b, 0x86, 0x3d, 0x30, 0x0f, 0xc8, 0xe4, 0xe5, 0xb7, 0x32, 0xb8, 0xee, 0xba,
+ 0xa9, 0x13, 0xa8, 0x66, 0xa5, 0x18, 0x2a, 0x14, 0xe0, 0x31, 0xac, 0xa7, 0x0a, 0x54, 0xea, 0x24,
+ 0xac, 0x61, 0x24, 0xad, 0x91, 0xd4, 0x35, 0x73, 0x8d, 0xae, 0xd9, 0x49, 0x5d, 0x6b, 0x3f, 0x94,
+ 0xe0, 0x4f, 0x4a, 0x30, 0xf1, 0xcf, 0x69, 0x9b, 0xa0, 0x0f, 0x50, 0x9e, 0xfc, 0xc3, 0x00, 0x6d,
+ 0x26, 0x93, 0xef, 0xd4, 0xbf, 0x1a, 0xe6, 0xd6, 0x6c, 0x06, 0xa9, 0x04, 0x5e, 0x40, 0x6f, 0xe2,
+ 0xd3, 0x50, 0x25, 0x65, 0x62, 0x97, 0x57, 0xad, 0xcd, 0x9c, 0xe5, 0xf1, 0xc2, 0x8e, 0x81, 0x4e,
+ 0x60, 0x25, 0x39, 0xc8, 0xa2, 0x47, 0x49, 0xd9, 0x13, 0x13, 0xb5, 0xf9, 0x78, 0xd6, 0x76, 0xec,
+ 0xd2, 0xff, 0x42, 0x29, 0x3e, 0xd7, 0xa1, 0x75, 0x7d, 0x66, 0x6a, 0xd6, 0x35, 0x37, 0xd2, 0x37,
+ 0x23, 0x3d, 0x4f, 0x60, 0x25, 0x39, 0x5d, 0x68, 0x84, 0xa9, 0x03, 0x91, 0x46, 0x98, 0x3e, 0x94,
+ 0x08, 0x84, 0x6f, 0xa0, 0x18, 0xcd, 0x01, 0xda, 0x78, 0x93, 0xe3, 0x87, 0x36, 0xde, 0xd4, 0xd0,
+ 0x20, 0x6e, 0xa9, 0x03, 0xe8, 0x0e, 0x01, 0xad, 0xc5, 0xdb, 0xc6, 0xc4, 0xd8, 0x60, 0x9a, 0x69,
+ 0x5b, 0x91, 0x86, 0xff, 0x81, 0xe5, 0xd8, 0x9f, 0x68, 0xc8, 0x4c, 0x5a, 0x38, 0xfe, 0xff, 0x9d,
+ 0xb9, 0x9e, 0xba, 0x17, 0xb7, 0x55, 0xb2, 0xcd, 0xd4, 0xb6, 0x4a, 0xed, 0x65, 0xb5, 0xad, 0xd2,
+ 0xbb, 0x53, 0xa1, 0xe5, 0x5b, 0x58, 0x8e, 0xf5, 0x41, 0x28, 0x45, 0x97, 0x69, 0x78, 0x29, 0x8d,
+ 0x93, 0xb8, 0xab, 0x09, 0x77, 0x26, 0x1a, 0x0e, 0xf4, 0x78, 0x66, 0x27, 0x22, 0xef, 0xdc, 0xbc,
+ 0xa6, 0x53, 0xc1, 0x0b, 0x68, 0x17, 0x0a, 0x61, 0x51, 0x47, 0x0f, 0xa3, 0xdc, 0x91, 0xec, 0x2e,
+ 0xcc, 0xca, 0xf4, 0x46, 0x0c, 0xd8, 0xff, 0x60, 0x75, 0xaa, 0xde, 0xa2, 0x28, 0x0c, 0x67, 0xb5,
+ 0x02, 0xe6, 0x93, 0x2b, 0x38, 0x22, 0x78, 0x1f, 0xc3, 0x14, 0xa0, 0xeb, 0xd7, 0x64, 0x0a, 0x98,
+ 0x2a, 0xce, 0x93, 0x29, 0x60, 0xba, 0xf4, 0x09, 0xd8, 0x1f, 0xe5, 0xcc, 0x1c, 0x9f, 0xce, 0xf4,
+ 0xd5, 0x33, 0x06, 0x43, 0x7d, 0xf5, 0xac, 0xc1, 0x4e, 0x5c, 0x1d, 0x40, 0x65, 0x56, 0x05, 0x43,
+ 0x7f, 0xd1, 0xef, 0x7c, 0x65, 0x39, 0x35, 0xb7, 0xaf, 0x67, 0x0c, 0x45, 0x6e, 0x1b, 0x3b, 0x06,
+ 0x3a, 0x83, 0x07, 0xe9, 0xc5, 0x08, 0x3d, 0x0b, 0x6f, 0xba, 0xb2, 0x3c, 0x9a, 0xcf, 0xaf, 0x63,
+ 0x8b, 0x69, 0x78, 0x0a, 0x77, 0x53, 0xea, 0x04, 0xc2, 0xb1, 0xfc, 0x31, 0xa3, 0x6a, 0x99, 0x4f,
+ 0xaf, 0xe4, 0xd1, 0x32, 0x4e, 0xf3, 0x62, 0xc0, 0xf8, 0xdb, 0xef, 0x01, 0x00, 0x00, 0xff, 0xff,
+ 0x49, 0x26, 0x00, 0x5f, 0xd4, 0x17, 0x00, 0x00,
}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
index 3a112cf44..02ea8f01c 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
@@ -239,7 +239,7 @@ type FetchRemoteRequest struct {
Timeout int32 `protobuf:"varint,5,opt,name=timeout" json:"timeout,omitempty"`
SshKey string `protobuf:"bytes,6,opt,name=ssh_key,json=sshKey" json:"ssh_key,omitempty"`
KnownHosts string `protobuf:"bytes,7,opt,name=known_hosts,json=knownHosts" json:"known_hosts,omitempty"`
- Prune bool `protobuf:"varint,8,opt,name=prune" json:"prune,omitempty"`
+ NoPrune bool `protobuf:"varint,9,opt,name=no_prune,json=noPrune" json:"no_prune,omitempty"`
}
func (m *FetchRemoteRequest) Reset() { *m = FetchRemoteRequest{} }
@@ -296,9 +296,9 @@ func (m *FetchRemoteRequest) GetKnownHosts() string {
return ""
}
-func (m *FetchRemoteRequest) GetPrune() bool {
+func (m *FetchRemoteRequest) GetNoPrune() bool {
if m != nil {
- return m.Prune
+ return m.NoPrune
}
return false
}
@@ -1820,96 +1820,97 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor10) }
var fileDescriptor10 = []byte{
- // 1443 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0x51, 0x6f, 0xdb, 0x36,
- 0x10, 0xb6, 0xe3, 0xc6, 0x49, 0xce, 0x6e, 0xe7, 0x30, 0x4e, 0xa3, 0x28, 0x69, 0x93, 0x70, 0xc5,
- 0x96, 0xb5, 0x5d, 0x50, 0x24, 0x2f, 0x7b, 0x19, 0x8a, 0x24, 0xa8, 0x13, 0xa3, 0x4d, 0xd1, 0x29,
- 0x1d, 0x02, 0x04, 0x18, 0x0c, 0x45, 0xa6, 0x2d, 0xc1, 0xb2, 0xe4, 0x92, 0x74, 0xda, 0xf4, 0x17,
- 0xec, 0x77, 0xed, 0x71, 0xaf, 0xfb, 0x19, 0xfb, 0x05, 0x7b, 0x1b, 0x44, 0x4a, 0xa2, 0x64, 0x49,
- 0x5e, 0x01, 0x6d, 0xd8, 0x9b, 0x78, 0x24, 0xbf, 0x3b, 0xde, 0xf1, 0x8e, 0xdf, 0x09, 0x34, 0x4a,
- 0x26, 0x3e, 0x73, 0xb8, 0x4f, 0xef, 0xbe, 0x67, 0x84, 0xde, 0x3a, 0x16, 0x39, 0x98, 0x50, 0x9f,
- 0xfb, 0xa8, 0x3e, 0x74, 0xb8, 0xe9, 0xde, 0xe9, 0x4d, 0x66, 0x9b, 0x94, 0xf4, 0xa5, 0x14, 0x5f,
- 0xc0, 0x86, 0x11, 0xef, 0x78, 0xf5, 0xc9, 0x61, 0x9c, 0x19, 0xe4, 0xc3, 0x94, 0x30, 0x8e, 0x0e,
- 0x01, 0x14, 0x98, 0x56, 0xdd, 0xad, 0xee, 0x37, 0x0e, 0xd1, 0x81, 0x44, 0x39, 0x50, 0x9b, 0x8c,
- 0xc4, 0x2a, 0x7c, 0x08, 0x5a, 0x16, 0x8e, 0x4d, 0x7c, 0x8f, 0x11, 0xf4, 0x10, 0xea, 0x44, 0x48,
- 0x04, 0xd6, 0xb2, 0x11, 0x8e, 0xf0, 0x5b, 0xb1, 0xc7, 0xb4, 0x46, 0x5d, 0xcf, 0xa2, 0x64, 0x4c,
- 0x3c, 0x6e, 0xba, 0x65, 0x6c, 0xd8, 0x82, 0xcd, 0x1c, 0x3c, 0x69, 0x04, 0x76, 0x61, 0x55, 0x4e,
- 0x76, 0xa6, 0x6e, 0x19, 0x2d, 0xe8, 0x6b, 0xb8, 0x6f, 0x51, 0x62, 0x72, 0xd2, 0xbb, 0x71, 0xf8,
- 0xd8, 0x9c, 0x68, 0x0b, 0xe2, 0x50, 0x4d, 0x29, 0x3c, 0x11, 0x32, 0xdc, 0x06, 0x94, 0xd4, 0x16,
- 0xda, 0x30, 0x81, 0xf5, 0x33, 0x93, 0xde, 0x98, 0x43, 0x72, 0xea, 0xbb, 0x2e, 0xb1, 0xf8, 0x7f,
- 0x6e, 0x87, 0x06, 0x0f, 0x67, 0x35, 0x86, 0xb6, 0xbc, 0x86, 0x75, 0x05, 0x7c, 0xe9, 0x7c, 0x26,
- 0x65, 0x3c, 0xff, 0x1c, 0x1e, 0xce, 0x82, 0x85, 0xb1, 0x47, 0x70, 0x8f, 0x39, 0x9f, 0x89, 0xc0,
- 0xa9, 0x19, 0xe2, 0x1b, 0x8f, 0x60, 0xf3, 0x78, 0x32, 0x71, 0xef, 0xce, 0x1c, 0x6e, 0x72, 0x4e,
- 0x9d, 0x9b, 0x29, 0x27, 0x65, 0x2e, 0x1f, 0xd2, 0x61, 0x99, 0x92, 0x5b, 0x87, 0x39, 0xbe, 0x27,
- 0xbc, 0xd0, 0x34, 0xe2, 0x31, 0xde, 0x06, 0x3d, 0x4f, 0x59, 0xe8, 0x85, 0xbf, 0xaa, 0x80, 0x3a,
- 0x84, 0x5b, 0xb6, 0x41, 0xc6, 0x3e, 0x2f, 0xe3, 0x83, 0xe0, 0x96, 0x53, 0x01, 0x22, 0x4c, 0x58,
- 0x31, 0xc2, 0x11, 0x6a, 0xc3, 0xe2, 0xc0, 0xa7, 0x16, 0xd1, 0x6a, 0x22, 0x3e, 0x72, 0x80, 0x36,
- 0x60, 0xc9, 0xf3, 0x7b, 0xdc, 0x1c, 0x32, 0xed, 0x9e, 0x4c, 0x0a, 0xcf, 0x7f, 0x6f, 0x0e, 0x19,
- 0xd2, 0x60, 0x89, 0x3b, 0x63, 0xe2, 0x4f, 0xb9, 0xb6, 0xb8, 0x5b, 0xdd, 0x5f, 0x34, 0xa2, 0x61,
- 0xb0, 0x85, 0x31, 0xbb, 0x37, 0x22, 0x77, 0x5a, 0x5d, 0x6a, 0x60, 0xcc, 0x7e, 0x4d, 0xee, 0xd0,
- 0x0e, 0x34, 0x46, 0x9e, 0xff, 0xd1, 0xeb, 0xd9, 0x7e, 0x90, 0x64, 0x4b, 0x62, 0x12, 0x84, 0xe8,
- 0x3c, 0x90, 0x04, 0x26, 0x4c, 0xe8, 0xd4, 0x23, 0xda, 0xb2, 0x34, 0x41, 0x0c, 0xf0, 0x3a, 0xac,
- 0xa5, 0x8e, 0x1e, 0xba, 0xe4, 0x02, 0x36, 0x4e, 0xc5, 0x15, 0x4a, 0x9c, 0xb3, 0xc4, 0xd5, 0xd0,
- 0x41, 0xcb, 0xc2, 0x85, 0xaa, 0xfe, 0xac, 0xc2, 0xea, 0x19, 0xe1, 0xc7, 0xd4, 0xb2, 0x9d, 0xdb,
- 0x52, 0xce, 0xdf, 0x82, 0x15, 0xcb, 0x1f, 0x8f, 0x1d, 0xde, 0x73, 0xfa, 0xa1, 0xff, 0x97, 0xa5,
- 0xa0, 0xdb, 0x0f, 0x22, 0x33, 0xa1, 0x64, 0xe0, 0x7c, 0x12, 0x21, 0x58, 0x31, 0xc2, 0x11, 0xfa,
- 0x01, 0xea, 0x03, 0x9f, 0x8e, 0x4d, 0x2e, 0x42, 0xf0, 0xe0, 0x70, 0x37, 0x52, 0x92, 0xb1, 0xe9,
- 0xa0, 0x23, 0xd6, 0x19, 0xe1, 0x7a, 0x7c, 0x04, 0x75, 0x29, 0x41, 0x4b, 0x50, 0xbb, 0xee, 0xbe,
- 0x6b, 0x55, 0x82, 0x8f, 0xf7, 0xc7, 0x46, 0xab, 0x8a, 0x00, 0xea, 0xef, 0x8f, 0x8d, 0xde, 0xd9,
- 0x75, 0x6b, 0x01, 0x35, 0x60, 0x29, 0xf8, 0x3e, 0xb9, 0x3e, 0x6c, 0xd5, 0xf0, 0x3e, 0xa0, 0x24,
- 0xb0, 0x4a, 0x90, 0xbe, 0xc9, 0x4d, 0x71, 0xce, 0xa6, 0x21, 0xbe, 0x83, 0x10, 0x9c, 0x9b, 0xec,
- 0x8d, 0x6f, 0x99, 0xee, 0x09, 0x35, 0x3d, 0xcb, 0x2e, 0x95, 0x1e, 0xf8, 0x05, 0x68, 0x59, 0xb8,
- 0x50, 0x7d, 0x1b, 0x16, 0x6f, 0x4d, 0x77, 0x4a, 0xc2, 0xd2, 0x2c, 0x07, 0xf8, 0x8f, 0x2a, 0x68,
- 0xe2, 0x6e, 0x5c, 0xfa, 0x53, 0x6a, 0x11, 0xb9, 0xab, 0x4c, 0x7c, 0x5e, 0xc2, 0x2a, 0x13, 0x50,
- 0xbd, 0xc4, 0xd6, 0x85, 0xc2, 0xad, 0x2d, 0xb9, 0xd8, 0x48, 0x55, 0xbb, 0x10, 0xe0, 0x46, 0x18,
- 0x23, 0x42, 0xd9, 0x34, 0x9a, 0x2c, 0x61, 0x20, 0x7a, 0x04, 0xc0, 0x4d, 0x3a, 0x24, 0xbc, 0x47,
- 0xc9, 0x40, 0x04, 0xb5, 0x69, 0xac, 0x48, 0x89, 0x41, 0x06, 0xf8, 0x08, 0x36, 0x73, 0x0e, 0xa5,
- 0x1e, 0x29, 0x4a, 0xd8, 0xd4, 0xe5, 0xd1, 0x23, 0x25, 0x47, 0xf8, 0x18, 0x1a, 0x1d, 0x66, 0x8d,
- 0xca, 0xf8, 0xff, 0x09, 0x34, 0x25, 0x84, 0xf2, 0x39, 0xa1, 0xd4, 0xa7, 0x61, 0xcc, 0xe5, 0x00,
- 0xff, 0x56, 0x85, 0xaf, 0xae, 0xa8, 0x13, 0x24, 0xca, 0xa0, 0x8c, 0xab, 0x5b, 0x50, 0x0b, 0x4e,
- 0x2f, 0xeb, 0x60, 0xf0, 0x99, 0x2a, 0x8f, 0xb5, 0x74, 0x79, 0x44, 0x7b, 0xd0, 0xf4, 0xdd, 0x7e,
- 0x2f, 0x9e, 0x97, 0x4e, 0x6b, 0xf8, 0x6e, 0xdf, 0x88, 0x96, 0xc4, 0x05, 0x6c, 0x31, 0x59, 0xc0,
- 0xda, 0xb0, 0xc8, 0x6c, 0xe2, 0xba, 0xa2, 0x16, 0x2d, 0x1b, 0x72, 0x80, 0xf7, 0xa1, 0xa5, 0xce,
- 0x30, 0xf7, 0xb8, 0x36, 0xb4, 0x3b, 0x8e, 0xd7, 0xbf, 0x20, 0x74, 0x48, 0x4e, 0x4c, 0x56, 0x2a,
- 0xfb, 0xb7, 0x61, 0x25, 0x3a, 0x00, 0xd3, 0x16, 0x76, 0x6b, 0x41, 0xd8, 0x63, 0x01, 0x7e, 0x06,
- 0xeb, 0x33, 0x9a, 0x54, 0xea, 0xdd, 0x98, 0x4c, 0x5e, 0xfd, 0x15, 0x43, 0x7c, 0xe3, 0x5f, 0xab,
- 0xb0, 0x2a, 0xeb, 0x55, 0xc7, 0xa7, 0xa3, 0xff, 0xf3, 0xca, 0x07, 0x1c, 0x22, 0x69, 0x49, 0xcc,
- 0x63, 0x36, 0xbb, 0xcc, 0x20, 0x81, 0xb1, 0x5d, 0xef, 0x1d, 0xf5, 0x87, 0x94, 0x30, 0x56, 0xb2,
- 0x74, 0x52, 0x01, 0x97, 0x28, 0x9d, 0x52, 0xd0, 0xed, 0xe3, 0x1f, 0x41, 0xcf, 0xd3, 0x16, 0x3a,
- 0x70, 0x07, 0x1a, 0x8e, 0xd7, 0x9b, 0x84, 0xe2, 0x30, 0x71, 0xc0, 0x89, 0x17, 0x4a, 0x63, 0x2f,
- 0x3f, 0x4c, 0x4d, 0x66, 0xff, 0x6b, 0xc6, 0x32, 0x01, 0x97, 0x30, 0x56, 0x0a, 0x22, 0x63, 0xb3,
- 0xda, 0xbe, 0xd4, 0xd8, 0x01, 0x3c, 0x9e, 0x7d, 0xa9, 0x3a, 0xd4, 0x1f, 0xff, 0x6c, 0xbc, 0x29,
- 0x99, 0x8e, 0x53, 0xea, 0x86, 0xb6, 0x06, 0x9f, 0x78, 0x0f, 0x76, 0x0a, 0xf5, 0x84, 0x41, 0xee,
- 0xc2, 0x9a, 0x5c, 0x72, 0x32, 0xf5, 0xfa, 0x6e, 0x29, 0x6a, 0xf6, 0x14, 0xda, 0x69, 0xa8, 0x39,
- 0xef, 0x0e, 0x01, 0x24, 0xb2, 0xf7, 0xd4, 0xf7, 0x06, 0xce, 0xb0, 0x64, 0x9c, 0x06, 0x53, 0xd7,
- 0xed, 0x4d, 0x4c, 0x6e, 0x47, 0x71, 0x0a, 0x04, 0xef, 0x4c, 0x6e, 0xe3, 0x67, 0xb0, 0x96, 0x52,
- 0x33, 0xb7, 0x4e, 0x8c, 0x60, 0x2f, 0xcf, 0x5b, 0xa5, 0x1d, 0x13, 0x3b, 0x60, 0x21, 0xe1, 0x80,
- 0x27, 0x80, 0xe7, 0x29, 0x0b, 0xa3, 0x73, 0x0e, 0x28, 0x28, 0x28, 0x6f, 0x1c, 0x8b, 0x78, 0xa5,
- 0x0a, 0x17, 0x3e, 0x85, 0xb5, 0x14, 0x52, 0xe8, 0x89, 0xe7, 0x80, 0x5c, 0x29, 0xea, 0x31, 0xdb,
- 0xa7, 0xbc, 0xe7, 0x99, 0xe3, 0xa8, 0x4c, 0xb5, 0xc2, 0x99, 0xcb, 0x60, 0xe2, 0xad, 0x39, 0x26,
- 0x87, 0xbf, 0x3f, 0x10, 0xad, 0x4d, 0xc4, 0xbe, 0x65, 0xef, 0x87, 0xae, 0xa0, 0x35, 0xdb, 0x90,
- 0xa1, 0x9d, 0xac, 0x39, 0xa9, 0xce, 0x4f, 0xdf, 0x2d, 0x5e, 0x10, 0x9e, 0xbd, 0x82, 0xae, 0xa3,
- 0x46, 0x2a, 0xd1, 0x65, 0xa1, 0xe4, 0xc6, 0xdc, 0x86, 0x4e, 0xdf, 0x9b, 0xb3, 0x22, 0xc6, 0x7e,
- 0x05, 0xa0, 0xda, 0x26, 0xb4, 0x99, 0xde, 0x92, 0x68, 0xdc, 0x74, 0x3d, 0x6f, 0x2a, 0x86, 0xf9,
- 0x09, 0x1e, 0xa4, 0xbb, 0x1e, 0xf4, 0x28, 0xa6, 0x76, 0x79, 0xfd, 0x97, 0xfe, 0xb8, 0x68, 0x3a,
- 0x09, 0x99, 0xee, 0x70, 0x14, 0x64, 0x6e, 0x1b, 0xa5, 0x20, 0xf3, 0x1b, 0x23, 0x5c, 0x41, 0xbf,
- 0x00, 0xca, 0x76, 0x26, 0x28, 0xf6, 0x53, 0x61, 0x8b, 0xa4, 0xe3, 0x79, 0x4b, 0x62, 0xf8, 0x73,
- 0x68, 0x24, 0xe8, 0x3d, 0x8a, 0x3d, 0x96, 0x6d, 0x77, 0xf4, 0xad, 0xdc, 0xb9, 0x18, 0xe9, 0x0a,
- 0x5a, 0xb3, 0x59, 0xa1, 0xae, 0x52, 0x41, 0xaf, 0xa0, 0xae, 0x52, 0x21, 0xfb, 0xaf, 0xa0, 0x33,
- 0x00, 0xc5, 0x88, 0x55, 0xb8, 0x33, 0xf4, 0x5b, 0x85, 0x3b, 0x4b, 0xa0, 0x71, 0xe5, 0x45, 0x35,
- 0xb0, 0x70, 0x96, 0xe1, 0x2a, 0x0b, 0x0b, 0xa8, 0xb4, 0xb2, 0xb0, 0x88, 0x1c, 0xcb, 0xcb, 0x9e,
- 0xa1, 0x8c, 0xea, 0xb2, 0x17, 0x51, 0x64, 0x75, 0xd9, 0x0b, 0xf9, 0x26, 0xae, 0xa0, 0x23, 0xb8,
- 0x17, 0xd0, 0x42, 0xb4, 0x16, 0x2f, 0x56, 0x3c, 0x53, 0x6f, 0xa7, 0x85, 0xf1, 0xa6, 0x97, 0xb0,
- 0x1c, 0x11, 0x2c, 0xb4, 0x11, 0xad, 0x99, 0xa1, 0x8d, 0xba, 0x96, 0x9d, 0x88, 0x01, 0xde, 0xc2,
- 0xfd, 0x14, 0x1b, 0x42, 0xdb, 0xb1, 0xa6, 0x1c, 0x3a, 0xa6, 0x3f, 0x2a, 0x98, 0x4d, 0xa6, 0xac,
- 0x62, 0x29, 0x2a, 0x86, 0x19, 0x0e, 0xa5, 0x62, 0x98, 0x43, 0x6a, 0x44, 0x32, 0x64, 0x89, 0x86,
- 0x4a, 0x86, 0x42, 0xca, 0xa3, 0x92, 0xa1, 0x98, 0xa7, 0x44, 0xf0, 0xb3, 0xd4, 0x20, 0x09, 0x5f,
- 0x40, 0x52, 0x92, 0xf0, 0x45, 0xcc, 0x02, 0x57, 0x90, 0x9b, 0xed, 0x99, 0xc3, 0x27, 0x1d, 0x7d,
- 0x53, 0x94, 0x07, 0x69, 0x6e, 0xa1, 0x7f, 0xfb, 0x8f, 0xeb, 0x62, 0x6d, 0x17, 0xd0, 0x4c, 0x3e,
- 0xe9, 0x68, 0x2b, 0xbd, 0x35, 0xf5, 0x34, 0xea, 0xdb, 0xf9, 0x93, 0x89, 0xe4, 0xf9, 0x08, 0x7a,
- 0xf1, 0xa3, 0x87, 0xbe, 0x9b, 0x67, 0x57, 0x5a, 0xd5, 0xd3, 0x2f, 0x59, 0x1a, 0x29, 0xde, 0xaf,
- 0x06, 0x15, 0x2a, 0xc1, 0x03, 0x54, 0x85, 0xca, 0x72, 0x10, 0x55, 0xa1, 0x72, 0x88, 0x43, 0x58,
- 0xeb, 0xd4, 0x3b, 0x9a, 0xa8, 0x75, 0x99, 0x67, 0x3a, 0x51, 0xeb, 0xb2, 0x0f, 0x2f, 0xae, 0xdc,
- 0xd4, 0xc5, 0xdf, 0xd1, 0xa3, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x4e, 0x20, 0xe9, 0x2b, 0x4f,
- 0x15, 0x00, 0x00,
+ // 1458 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0x5f, 0x6f, 0xdb, 0xb6,
+ 0x16, 0xb7, 0xf3, 0xd7, 0x3e, 0x71, 0x7b, 0x1d, 0x26, 0x69, 0x14, 0x25, 0x6d, 0x12, 0xde, 0xe2,
+ 0xde, 0xdc, 0xb6, 0x37, 0x28, 0x92, 0x97, 0xbd, 0x0c, 0x45, 0x12, 0x34, 0x7f, 0xd6, 0xa6, 0xc8,
+ 0x94, 0x0e, 0x05, 0x02, 0x0c, 0x82, 0x22, 0xd3, 0xb6, 0x60, 0x59, 0x74, 0x49, 0x3a, 0x6d, 0xfa,
+ 0xbc, 0x87, 0x7d, 0xae, 0x3d, 0xee, 0x75, 0x1f, 0x63, 0x5f, 0x62, 0x10, 0x29, 0x89, 0x92, 0x25,
+ 0x79, 0x05, 0xb4, 0x61, 0x6f, 0xe2, 0x21, 0xf9, 0x3b, 0x87, 0xe7, 0xf0, 0x1c, 0xfe, 0x8e, 0xc0,
+ 0x60, 0x64, 0x44, 0xb9, 0x27, 0x28, 0xbb, 0xff, 0x3f, 0x27, 0xec, 0xce, 0x73, 0xc9, 0xfe, 0x88,
+ 0x51, 0x41, 0xd1, 0x42, 0xcf, 0x13, 0x8e, 0x7f, 0x6f, 0xb6, 0x78, 0xdf, 0x61, 0xa4, 0xa3, 0xa4,
+ 0xf8, 0x12, 0xd6, 0xad, 0x64, 0xc7, 0xeb, 0xcf, 0x1e, 0x17, 0xdc, 0x22, 0x1f, 0xc7, 0x84, 0x0b,
+ 0x74, 0x00, 0xa0, 0xc1, 0x8c, 0xfa, 0x4e, 0x7d, 0x6f, 0xe9, 0x00, 0xed, 0x2b, 0x94, 0x7d, 0xbd,
+ 0xc9, 0x4a, 0xad, 0xc2, 0x07, 0x60, 0xe4, 0xe1, 0xf8, 0x88, 0x06, 0x9c, 0xa0, 0x47, 0xb0, 0x40,
+ 0xa4, 0x44, 0x62, 0x35, 0xac, 0x68, 0x84, 0xdf, 0xc9, 0x3d, 0x8e, 0x3b, 0xb8, 0x08, 0x5c, 0x46,
+ 0x86, 0x24, 0x10, 0x8e, 0x5f, 0xc5, 0x86, 0x4d, 0xd8, 0x28, 0xc0, 0x53, 0x46, 0x60, 0x1f, 0x96,
+ 0xd5, 0xe4, 0xe9, 0xd8, 0xaf, 0xa2, 0x05, 0xfd, 0x1b, 0x1e, 0xb8, 0x8c, 0x38, 0x82, 0xd8, 0xb7,
+ 0x9e, 0x18, 0x3a, 0x23, 0x63, 0x46, 0x1e, 0xaa, 0xa5, 0x84, 0xc7, 0x52, 0x86, 0x57, 0x01, 0xa5,
+ 0xb5, 0x45, 0x36, 0x8c, 0x60, 0xed, 0xcc, 0x61, 0xb7, 0x4e, 0x8f, 0x9c, 0x50, 0xdf, 0x27, 0xae,
+ 0xf8, 0xdb, 0xed, 0x30, 0xe0, 0xd1, 0xa4, 0xc6, 0xc8, 0x96, 0x37, 0xb0, 0xa6, 0x81, 0xaf, 0xbd,
+ 0x2f, 0xa4, 0x8a, 0xe7, 0x5f, 0xc0, 0xa3, 0x49, 0xb0, 0x28, 0xf6, 0x08, 0xe6, 0xb8, 0xf7, 0x85,
+ 0x48, 0x9c, 0x59, 0x4b, 0x7e, 0xe3, 0x01, 0x6c, 0x1c, 0x8d, 0x46, 0xfe, 0xfd, 0x99, 0x27, 0x1c,
+ 0x21, 0x98, 0x77, 0x3b, 0x16, 0xa4, 0xca, 0xe5, 0x43, 0x26, 0x34, 0x18, 0xb9, 0xf3, 0xb8, 0x47,
+ 0x03, 0xe9, 0x85, 0x96, 0x95, 0x8c, 0xf1, 0x16, 0x98, 0x45, 0xca, 0x22, 0x2f, 0xfc, 0x34, 0x03,
+ 0xe8, 0x94, 0x08, 0xb7, 0x6f, 0x91, 0x21, 0x15, 0x55, 0x7c, 0x10, 0xde, 0x72, 0x26, 0x41, 0xa4,
+ 0x09, 0x4d, 0x2b, 0x1a, 0xa1, 0x55, 0x98, 0xef, 0x52, 0xe6, 0x12, 0x63, 0x56, 0xc6, 0x47, 0x0d,
+ 0xd0, 0x3a, 0x2c, 0x06, 0xd4, 0x16, 0x4e, 0x8f, 0x1b, 0x73, 0x2a, 0x29, 0x02, 0xfa, 0xde, 0xe9,
+ 0x71, 0x64, 0xc0, 0xa2, 0xf0, 0x86, 0x84, 0x8e, 0x85, 0x31, 0xbf, 0x53, 0xdf, 0x9b, 0xb7, 0xe2,
+ 0x61, 0xb8, 0x85, 0xf3, 0xbe, 0x3d, 0x20, 0xf7, 0xc6, 0x82, 0xd2, 0xc0, 0x79, 0xff, 0x0d, 0xb9,
+ 0x47, 0xdb, 0xb0, 0x34, 0x08, 0xe8, 0xa7, 0xc0, 0xee, 0xd3, 0x30, 0xc9, 0x16, 0xe5, 0x24, 0x48,
+ 0xd1, 0x79, 0x28, 0x41, 0x1b, 0xd0, 0x08, 0xa8, 0x3d, 0x62, 0xe3, 0x80, 0x18, 0x4d, 0xa9, 0x6d,
+ 0x31, 0xa0, 0x57, 0xe1, 0xf0, 0xbb, 0xb9, 0x46, 0xa3, 0xdd, 0xc4, 0x6b, 0xb0, 0x92, 0xf1, 0x42,
+ 0xe4, 0x9d, 0x4b, 0x58, 0x3f, 0x91, 0xb7, 0x29, 0x75, 0xe4, 0x0a, 0xb7, 0xc4, 0x04, 0x23, 0x0f,
+ 0x17, 0xa9, 0xfa, 0xbd, 0x0e, 0xcb, 0x67, 0x44, 0x1c, 0x31, 0xb7, 0xef, 0xdd, 0x55, 0x8a, 0xc3,
+ 0x26, 0x34, 0x5d, 0x3a, 0x1c, 0x7a, 0xc2, 0xf6, 0x3a, 0x51, 0x28, 0x1a, 0x4a, 0x70, 0xd1, 0x09,
+ 0x83, 0x34, 0x62, 0xa4, 0xeb, 0x7d, 0x96, 0xd1, 0x68, 0x5a, 0xd1, 0x08, 0x7d, 0x03, 0x0b, 0x5d,
+ 0xca, 0x86, 0x8e, 0x90, 0xd1, 0x78, 0x78, 0xb0, 0x13, 0x2b, 0xc9, 0xd9, 0xb4, 0x7f, 0x2a, 0xd7,
+ 0x59, 0xd1, 0x7a, 0x7c, 0x08, 0x0b, 0x4a, 0x82, 0x16, 0x61, 0xf6, 0xe6, 0xe2, 0xaa, 0x5d, 0x0b,
+ 0x3f, 0xde, 0x1f, 0x59, 0xed, 0x3a, 0x02, 0x58, 0x78, 0x7f, 0x64, 0xd9, 0x67, 0x37, 0xed, 0x19,
+ 0xb4, 0x04, 0x8b, 0xe1, 0xf7, 0xf1, 0xcd, 0x41, 0x7b, 0x16, 0xef, 0x01, 0x4a, 0x03, 0xeb, 0x5c,
+ 0xe9, 0x38, 0xc2, 0x91, 0xe7, 0x6c, 0x59, 0xf2, 0x3b, 0x0c, 0xc1, 0xb9, 0xc3, 0xdf, 0x52, 0xd7,
+ 0xf1, 0x8f, 0x99, 0x13, 0xb8, 0xfd, 0x4a, 0x99, 0x82, 0x5f, 0x82, 0x91, 0x87, 0x8b, 0xd4, 0xaf,
+ 0xc2, 0xfc, 0x9d, 0xe3, 0x8f, 0x49, 0x54, 0xa5, 0xd5, 0x00, 0xff, 0x56, 0x07, 0x43, 0xde, 0x8d,
+ 0x6b, 0x3a, 0x66, 0x2e, 0x51, 0xbb, 0xaa, 0xc4, 0xe7, 0x15, 0x2c, 0x73, 0x09, 0x65, 0xa7, 0xb6,
+ 0xce, 0x94, 0x6e, 0x6d, 0xab, 0xc5, 0x56, 0xa6, 0xf0, 0x45, 0x00, 0xb7, 0xd2, 0x18, 0x19, 0xca,
+ 0x96, 0xd5, 0xe2, 0x29, 0x03, 0xd1, 0x63, 0x00, 0xe1, 0xb0, 0x1e, 0x11, 0x36, 0x23, 0x5d, 0x19,
+ 0xd4, 0x96, 0xd5, 0x54, 0x12, 0x8b, 0x74, 0xf1, 0x21, 0x6c, 0x14, 0x1c, 0x4a, 0xbf, 0x57, 0x8c,
+ 0xf0, 0xb1, 0x2f, 0xe2, 0xf7, 0x4a, 0x8d, 0xf0, 0x11, 0x2c, 0x9d, 0x72, 0x77, 0x50, 0xc5, 0xff,
+ 0x4f, 0xa1, 0xa5, 0x20, 0xb4, 0xcf, 0x09, 0x63, 0x94, 0x45, 0x31, 0x57, 0x03, 0xfc, 0x4b, 0x1d,
+ 0xfe, 0xf5, 0x81, 0x79, 0x61, 0xa2, 0x74, 0xab, 0xb8, 0xba, 0x0d, 0xb3, 0xe1, 0xe9, 0x55, 0x49,
+ 0x0c, 0x3f, 0x33, 0x95, 0x72, 0x36, 0x5b, 0x29, 0xd1, 0x2e, 0xb4, 0xa8, 0xdf, 0xb1, 0x93, 0x79,
+ 0xe5, 0xb4, 0x25, 0xea, 0x77, 0xac, 0x78, 0x49, 0x52, 0xcb, 0xe6, 0xd3, 0xb5, 0x6c, 0x15, 0xe6,
+ 0x79, 0x9f, 0xf8, 0xbe, 0x2c, 0x4b, 0x0d, 0x4b, 0x0d, 0xf0, 0x1e, 0xb4, 0xf5, 0x19, 0xa6, 0x1e,
+ 0xb7, 0x0f, 0xab, 0xa7, 0x5e, 0xd0, 0xb9, 0x24, 0xac, 0x47, 0x8e, 0x1d, 0x5e, 0x29, 0xfb, 0xb7,
+ 0xa0, 0x19, 0x1f, 0x80, 0x1b, 0x33, 0x3b, 0xb3, 0x61, 0xd8, 0x13, 0x01, 0x7e, 0x0e, 0x6b, 0x13,
+ 0x9a, 0x74, 0xea, 0xdd, 0x3a, 0x5c, 0x5d, 0xfd, 0xa6, 0x25, 0xbf, 0xf1, 0xcf, 0x75, 0x58, 0x56,
+ 0xf5, 0xea, 0x94, 0xb2, 0xc1, 0x3f, 0x79, 0xe5, 0x43, 0x3a, 0x91, 0xb6, 0x24, 0xa1, 0x34, 0x1b,
+ 0x17, 0xdc, 0x22, 0xa1, 0xb1, 0x17, 0xc1, 0x15, 0xa3, 0x3d, 0x46, 0x38, 0xaf, 0x58, 0x3a, 0x99,
+ 0x84, 0x4b, 0x95, 0x4e, 0x25, 0xb8, 0xe8, 0xe0, 0x6f, 0xc1, 0x2c, 0xd2, 0x16, 0x39, 0x70, 0x1b,
+ 0x96, 0xbc, 0xc0, 0x1e, 0x45, 0xe2, 0x28, 0x71, 0xc0, 0x4b, 0x16, 0x2a, 0x63, 0xaf, 0x3f, 0x8e,
+ 0x1d, 0xde, 0xff, 0xcb, 0x8c, 0xe5, 0x12, 0x2e, 0x65, 0xac, 0x12, 0xc4, 0xc6, 0xe6, 0xb5, 0x7d,
+ 0xad, 0xb1, 0x5d, 0x78, 0x32, 0xf9, 0x52, 0x9d, 0x32, 0x3a, 0xfc, 0xc1, 0x7a, 0x5b, 0x31, 0x1d,
+ 0xc7, 0xcc, 0x8f, 0x6c, 0x0d, 0x3f, 0xf1, 0x2e, 0x6c, 0x97, 0xea, 0x89, 0x82, 0x7c, 0x01, 0x2b,
+ 0x6a, 0xc9, 0xf1, 0x38, 0xe8, 0xf8, 0x95, 0x58, 0xda, 0x33, 0x58, 0xcd, 0x42, 0x4d, 0x79, 0x77,
+ 0x08, 0x20, 0x99, 0xbd, 0x27, 0x34, 0xe8, 0x7a, 0xbd, 0x8a, 0x71, 0xea, 0x8e, 0x7d, 0xdf, 0x1e,
+ 0x39, 0xa2, 0x1f, 0xc7, 0x29, 0x14, 0x5c, 0x39, 0xa2, 0x8f, 0x9f, 0xc3, 0x4a, 0x46, 0xcd, 0xd4,
+ 0x3a, 0x31, 0x80, 0xdd, 0x22, 0x6f, 0x55, 0x76, 0x4c, 0xe2, 0x80, 0x99, 0x94, 0x03, 0x9e, 0x02,
+ 0x9e, 0xa6, 0x2c, 0x8a, 0xce, 0x39, 0xa0, 0xb0, 0xa0, 0xbc, 0xf5, 0x5c, 0x12, 0x54, 0x2a, 0x5c,
+ 0xf8, 0x04, 0x56, 0x32, 0x48, 0x91, 0x27, 0x5e, 0x00, 0xf2, 0x95, 0xc8, 0xe6, 0x7d, 0xca, 0x84,
+ 0x1d, 0x38, 0xc3, 0xb8, 0x4c, 0xb5, 0xa3, 0x99, 0xeb, 0x70, 0xe2, 0x9d, 0x33, 0x24, 0x07, 0xbf,
+ 0x3e, 0x94, 0x5d, 0x4e, 0x4c, 0xc4, 0x55, 0x1b, 0x88, 0x3e, 0x40, 0x7b, 0xb2, 0x37, 0x43, 0xdb,
+ 0x79, 0x73, 0x32, 0x4d, 0xa0, 0xb9, 0x53, 0xbe, 0x20, 0x3a, 0x7b, 0x0d, 0xdd, 0xc4, 0x3d, 0x55,
+ 0xaa, 0xe1, 0x42, 0xe9, 0x8d, 0x85, 0xbd, 0x9d, 0xb9, 0x3b, 0x65, 0x45, 0x82, 0xfd, 0x1a, 0x40,
+ 0x77, 0x50, 0x68, 0x23, 0xbb, 0x25, 0xd5, 0xc3, 0x99, 0x66, 0xd1, 0x54, 0x02, 0xf3, 0x3d, 0x3c,
+ 0xcc, 0x36, 0x40, 0xe8, 0x71, 0x42, 0xed, 0x8a, 0x5a, 0x31, 0xf3, 0x49, 0xd9, 0x74, 0x1a, 0x32,
+ 0xdb, 0xec, 0x68, 0xc8, 0xc2, 0x8e, 0x4a, 0x43, 0x16, 0xf7, 0x48, 0xb8, 0x86, 0x7e, 0x04, 0x94,
+ 0x6f, 0x52, 0x50, 0xe2, 0xa7, 0xd2, 0x6e, 0xc9, 0xc4, 0xd3, 0x96, 0x24, 0xf0, 0xe7, 0xb0, 0x94,
+ 0xa2, 0xf7, 0x28, 0xf1, 0x58, 0xbe, 0xf3, 0x31, 0x37, 0x0b, 0xe7, 0x12, 0xa4, 0x0f, 0xd0, 0x9e,
+ 0xcc, 0x0a, 0x7d, 0x95, 0x4a, 0x7a, 0x05, 0x7d, 0x95, 0x4a, 0xd9, 0x7f, 0x0d, 0x9d, 0x01, 0x68,
+ 0x46, 0xac, 0xc3, 0x9d, 0xa3, 0xdf, 0x3a, 0xdc, 0x79, 0x02, 0x8d, 0x6b, 0x2f, 0xeb, 0xa1, 0x85,
+ 0x93, 0x0c, 0x57, 0x5b, 0x58, 0x42, 0xa5, 0xb5, 0x85, 0x65, 0xe4, 0x58, 0x5d, 0xf6, 0x1c, 0x65,
+ 0xd4, 0x97, 0xbd, 0x8c, 0x22, 0xeb, 0xcb, 0x5e, 0xca, 0x37, 0x71, 0x0d, 0x1d, 0xc2, 0x5c, 0x48,
+ 0x0b, 0xd1, 0x4a, 0xb2, 0x58, 0xf3, 0x4c, 0x73, 0x35, 0x2b, 0x4c, 0x36, 0xbd, 0x82, 0x46, 0x4c,
+ 0xb0, 0xd0, 0x7a, 0xbc, 0x66, 0x82, 0x36, 0x9a, 0x46, 0x7e, 0x22, 0x01, 0x78, 0x07, 0x0f, 0x32,
+ 0x6c, 0x08, 0x6d, 0x25, 0x9a, 0x0a, 0xe8, 0x98, 0xf9, 0xb8, 0x64, 0x36, 0x9d, 0xb2, 0x9a, 0xa5,
+ 0xe8, 0x18, 0xe6, 0x38, 0x94, 0x8e, 0x61, 0x01, 0xa9, 0x91, 0xc9, 0x90, 0x27, 0x1a, 0x3a, 0x19,
+ 0x4a, 0x29, 0x8f, 0x4e, 0x86, 0x72, 0x9e, 0x12, 0xc3, 0x4f, 0x52, 0x83, 0x34, 0x7c, 0x09, 0x49,
+ 0x49, 0xc3, 0x97, 0x31, 0x0b, 0x5c, 0x43, 0x7e, 0xbe, 0x67, 0x8e, 0x9e, 0x74, 0xf4, 0x9f, 0xb2,
+ 0x3c, 0xc8, 0x72, 0x0b, 0xf3, 0xbf, 0x7f, 0xba, 0x2e, 0xd1, 0x76, 0x09, 0xad, 0xf4, 0x93, 0x8e,
+ 0x36, 0xb3, 0x5b, 0x33, 0x4f, 0xa3, 0xb9, 0x55, 0x3c, 0x99, 0x4a, 0x9e, 0x4f, 0x60, 0x96, 0x3f,
+ 0x7a, 0xe8, 0x7f, 0xd3, 0xec, 0xca, 0xaa, 0x7a, 0xf6, 0x35, 0x4b, 0x63, 0xc5, 0x7b, 0xf5, 0xb0,
+ 0x42, 0xa5, 0x78, 0x80, 0xae, 0x50, 0x79, 0x0e, 0xa2, 0x2b, 0x54, 0x01, 0x71, 0x88, 0x6a, 0x9d,
+ 0x7e, 0x47, 0x53, 0xb5, 0x2e, 0xf7, 0x4c, 0xa7, 0x6a, 0x5d, 0xfe, 0xe1, 0xc5, 0xb5, 0xdb, 0x05,
+ 0xf9, 0xa3, 0xf4, 0xf0, 0x8f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x46, 0x1f, 0xcc, 0xb0, 0x5a, 0x15,
+ 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 1221f57f2..fe1f868e4 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -201,12 +201,12 @@
"revisionTime": "2017-12-31T12:27:32Z"
},
{
- "checksumSHA1": "aAau9rZ5kLnMEAwnZUPBPmv0cCc=",
+ "checksumSHA1": "SkLpvkNLVOiN2bCW6FWceyLzSjg=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
- "revision": "6b83118c4e57c90e214bc58de6d9ff1a175257a3",
- "revisionTime": "2018-02-26T17:03:11Z",
- "version": "v0.86.0",
- "versionExact": "v0.86.0"
+ "revision": "c2cb89626b5c88fdcf50abdafb056b1a9dfbebeb",
+ "revisionTime": "2018-02-28T21:07:46Z",
+ "version": "v0.87.0",
+ "versionExact": "v0.87.0"
},
{
"checksumSHA1": "nqWNlnMmVpt628zzvyo6Yv2CX5Q=",