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:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2018-03-16 12:50:49 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2018-03-23 14:25:17 +0300
commit7cb29b424932cef7651d4379602c22616797fd91 (patch)
treee22d581b8c400cec9107dce7b43e1baa56a04914
parentc6c78f17542aade8e0eefb9166b16b2975129618 (diff)
Server implementation FindRemoteRepository
Shell out command to check if a remote repository exists, mostly for wiki repositories right now. Among the changes is an upgrade of the gitaly-proto package to v0.90 which required also marking an endpoint as unimplemented. Part of gitlab-org/gitaly#1084
-rw-r--r--CHANGELOG.md2
-rw-r--r--internal/git/command.go5
-rw-r--r--internal/service/remote/remotes.go31
-rw-r--r--internal/service/remote/remotes_test.go60
-rw-r--r--internal/service/remote/testdata/lsremotedata.txtbin0 -> 7418 bytes
-rw-r--r--internal/service/repository/server.go5
-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.go4
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/remote.pb.go128
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go283
-rw-r--r--vendor/vendor.json10
11 files changed, 403 insertions, 127 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 12226be91..92945df74 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
UNRELEASED
+- Server implementation FindRemoteRepository
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/636
- Log process PID in 'spawn complete' entry
https://gitlab.com/gitlab-org/gitaly/merge_requests/637
- Vendor gitlab_git at 79aa00321063da
diff --git a/internal/git/command.go b/internal/git/command.go
index 22b23e7d5..ae9fe2675 100644
--- a/internal/git/command.go
+++ b/internal/git/command.go
@@ -20,3 +20,8 @@ func Command(ctx context.Context, repo *pb.Repository, args ...string) (*command
args = append([]string{"--git-dir", repoPath}, args...)
return command.New(ctx, exec.Command(command.GitPath(), args...), nil, nil, nil, env...)
}
+
+// CommandWithoutRepo works like Command but without a git repository
+func CommandWithoutRepo(ctx context.Context, args ...string) (*command.Command, error) {
+ return command.New(ctx, exec.Command(command.GitPath(), args...), nil, nil, nil, "")
+}
diff --git a/internal/service/remote/remotes.go b/internal/service/remote/remotes.go
index da473d1f9..d7a98d4cb 100644
--- a/internal/service/remote/remotes.go
+++ b/internal/service/remote/remotes.go
@@ -1,7 +1,9 @@
package remote
import (
+ "bytes"
"fmt"
+ "io/ioutil"
"strings"
"google.golang.org/grpc/codes"
@@ -10,6 +12,7 @@ import (
"golang.org/x/net/context"
pb "gitlab.com/gitlab-org/gitaly-proto/go"
+ "gitlab.com/gitlab-org/gitaly/internal/git"
"gitlab.com/gitlab-org/gitaly/internal/rubyserver"
)
@@ -62,6 +65,34 @@ func (s *server) RemoveRemote(ctx context.Context, req *pb.RemoveRemoteRequest)
return client.RemoveRemote(clientCtx, req)
}
+func (s *server) FindRemoteRepository(ctx context.Context, req *pb.FindRemoteRepositoryRequest) (*pb.FindRemoteRepositoryResponse, error) {
+ if req.GetRemote() == "" {
+ return nil, status.Error(codes.InvalidArgument, "FindRemoteRepository: empty remote can't be checked.")
+ }
+
+ cmd, err := git.CommandWithoutRepo(ctx, "ls-remote", req.GetRemote(), "HEAD")
+
+ if err != nil {
+ return nil, status.Errorf(codes.Internal, "error executing git command: %s", err)
+ }
+
+ output, err := ioutil.ReadAll(cmd)
+ if err != nil {
+ return nil, status.Errorf(codes.Internal, "unable to read stdout: %s", err)
+ }
+ if err := cmd.Wait(); err != nil {
+ return &pb.FindRemoteRepositoryResponse{Exists: false}, nil
+ }
+
+ // The output of a successful command is structured like
+ // Regexp would've read better, but this is faster
+ // 58fbff2e0d3b620f591a748c158799ead87b51cd HEAD
+ fields := bytes.Fields(output)
+ match := len(fields) == 2 && len(fields[0]) == 40 && string(fields[1]) == "HEAD"
+
+ return &pb.FindRemoteRepositoryResponse{Exists: match}, nil
+}
+
func validateRemoveRemoteRequest(req *pb.RemoveRemoteRequest) error {
if req.GetName() == "" {
return fmt.Errorf("empty remote name")
diff --git a/internal/service/remote/remotes_test.go b/internal/service/remote/remotes_test.go
index 72fff4ad1..5c18e90fe 100644
--- a/internal/service/remote/remotes_test.go
+++ b/internal/service/remote/remotes_test.go
@@ -1,7 +1,11 @@
package remote
import (
+ "bytes"
"fmt"
+ "io"
+ "net/http"
+ "net/http/httptest"
"testing"
"google.golang.org/grpc/codes"
@@ -213,3 +217,59 @@ func TestFailedRemoveRemoteDueToValidation(t *testing.T) {
_, err := client.RemoveRemote(ctx, request)
testhelper.AssertGrpcError(t, err, codes.InvalidArgument, "")
}
+
+func TestFindRemoteRepository(t *testing.T) {
+ server, serverSocketPath := runRemoteServiceServer(t)
+ defer server.Stop()
+
+ client, conn := NewRemoteClient(t, serverSocketPath)
+ defer conn.Close()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+ infoRefs := testhelper.MustReadFile(t, "testdata/lsremotedata.txt")
+ w.Header().Set("Content-Type", "application/x-git-upload-pack-advertisement")
+ io.Copy(w, bytes.NewReader(infoRefs))
+ }))
+ defer ts.Close()
+
+ resp, err := client.FindRemoteRepository(ctx, &pb.FindRemoteRepositoryRequest{Remote: ts.URL})
+ require.NoError(t, err)
+
+ require.True(t, resp.Exists)
+}
+
+func TestFailedFindRemoteRepository(t *testing.T) {
+ server, serverSocketPath := runRemoteServiceServer(t)
+ defer server.Stop()
+
+ client, conn := NewRemoteClient(t, serverSocketPath)
+ defer conn.Close()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ testCases := []struct {
+ description string
+ remote string
+ exists bool
+ code codes.Code
+ }{
+ {"non existing remote", "http://example.com/test.git", false, codes.OK},
+ {"empty remote", "", false, codes.InvalidArgument},
+ }
+
+ for _, tc := range testCases {
+ resp, err := client.FindRemoteRepository(ctx, &pb.FindRemoteRepositoryRequest{Remote: tc.remote})
+ if tc.code == codes.OK {
+ require.NoError(t, err)
+ } else {
+ testhelper.AssertGrpcError(t, err, tc.code, "")
+ continue
+ }
+
+ require.Equal(t, tc.exists, resp.GetExists(), tc.description)
+ }
+}
diff --git a/internal/service/remote/testdata/lsremotedata.txt b/internal/service/remote/testdata/lsremotedata.txt
new file mode 100644
index 000000000..197c975d1
--- /dev/null
+++ b/internal/service/remote/testdata/lsremotedata.txt
Binary files differ
diff --git a/internal/service/repository/server.go b/internal/service/repository/server.go
index 13d859902..babc1c859 100644
--- a/internal/service/repository/server.go
+++ b/internal/service/repository/server.go
@@ -1,6 +1,7 @@
package repository
import (
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
"gitlab.com/gitlab-org/gitaly/internal/rubyserver"
pb "gitlab.com/gitlab-org/gitaly-proto/go"
@@ -14,3 +15,7 @@ type server struct {
func NewServer(rs *rubyserver.Server) pb.RepositoryServiceServer {
return &server{rs}
}
+
+func (s *server) GetInfoAttributes(in *pb.GetInfoAttributesRequest, stream pb.RepositoryService_GetInfoAttributesServer) error {
+ return helper.Unimplemented
+}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
index 5aee1345c..ae02209bb 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
@@ -1 +1 @@
-0.89.0
+0.90.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 b4584fc89..c1fc09c2e 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
@@ -163,6 +163,8 @@ It has these top-level messages:
FetchInternalRemoteResponse
UpdateRemoteMirrorRequest
UpdateRemoteMirrorResponse
+ FindRemoteRepositoryRequest
+ FindRemoteRepositoryResponse
RepositoryExistsRequest
RepositoryExistsResponse
RepackIncrementalRequest
@@ -207,6 +209,8 @@ It has these top-level messages:
CreateRepositoryFromBundleResponse
FindLicenseRequest
FindLicenseResponse
+ GetInfoAttributesRequest
+ GetInfoAttributesResponse
ServerInfoRequest
ServerInfoResponse
Repository
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/remote.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/remote.pb.go
index b4108e253..8a0e609a3 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/remote.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/remote.pb.go
@@ -186,6 +186,40 @@ func (m *UpdateRemoteMirrorResponse) String() string { return proto.C
func (*UpdateRemoteMirrorResponse) ProtoMessage() {}
func (*UpdateRemoteMirrorResponse) Descriptor() ([]byte, []int) { return fileDescriptor9, []int{7} }
+type FindRemoteRepositoryRequest struct {
+ Remote string `protobuf:"bytes,1,opt,name=remote" json:"remote,omitempty"`
+}
+
+func (m *FindRemoteRepositoryRequest) Reset() { *m = FindRemoteRepositoryRequest{} }
+func (m *FindRemoteRepositoryRequest) String() string { return proto.CompactTextString(m) }
+func (*FindRemoteRepositoryRequest) ProtoMessage() {}
+func (*FindRemoteRepositoryRequest) Descriptor() ([]byte, []int) { return fileDescriptor9, []int{8} }
+
+func (m *FindRemoteRepositoryRequest) GetRemote() string {
+ if m != nil {
+ return m.Remote
+ }
+ return ""
+}
+
+// This migth throw a GRPC Unavailable code, to signal the request failure
+// is transient.
+type FindRemoteRepositoryResponse struct {
+ Exists bool `protobuf:"varint,1,opt,name=exists" json:"exists,omitempty"`
+}
+
+func (m *FindRemoteRepositoryResponse) Reset() { *m = FindRemoteRepositoryResponse{} }
+func (m *FindRemoteRepositoryResponse) String() string { return proto.CompactTextString(m) }
+func (*FindRemoteRepositoryResponse) ProtoMessage() {}
+func (*FindRemoteRepositoryResponse) Descriptor() ([]byte, []int) { return fileDescriptor9, []int{9} }
+
+func (m *FindRemoteRepositoryResponse) GetExists() bool {
+ if m != nil {
+ return m.Exists
+ }
+ return false
+}
+
func init() {
proto.RegisterType((*AddRemoteRequest)(nil), "gitaly.AddRemoteRequest")
proto.RegisterType((*AddRemoteResponse)(nil), "gitaly.AddRemoteResponse")
@@ -195,6 +229,8 @@ func init() {
proto.RegisterType((*FetchInternalRemoteResponse)(nil), "gitaly.FetchInternalRemoteResponse")
proto.RegisterType((*UpdateRemoteMirrorRequest)(nil), "gitaly.UpdateRemoteMirrorRequest")
proto.RegisterType((*UpdateRemoteMirrorResponse)(nil), "gitaly.UpdateRemoteMirrorResponse")
+ proto.RegisterType((*FindRemoteRepositoryRequest)(nil), "gitaly.FindRemoteRepositoryRequest")
+ proto.RegisterType((*FindRemoteRepositoryResponse)(nil), "gitaly.FindRemoteRepositoryResponse")
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -212,6 +248,7 @@ type RemoteServiceClient interface {
FetchInternalRemote(ctx context.Context, in *FetchInternalRemoteRequest, opts ...grpc.CallOption) (*FetchInternalRemoteResponse, error)
RemoveRemote(ctx context.Context, in *RemoveRemoteRequest, opts ...grpc.CallOption) (*RemoveRemoteResponse, error)
UpdateRemoteMirror(ctx context.Context, opts ...grpc.CallOption) (RemoteService_UpdateRemoteMirrorClient, error)
+ FindRemoteRepository(ctx context.Context, in *FindRemoteRepositoryRequest, opts ...grpc.CallOption) (*FindRemoteRepositoryResponse, error)
}
type remoteServiceClient struct {
@@ -283,6 +320,15 @@ func (x *remoteServiceUpdateRemoteMirrorClient) CloseAndRecv() (*UpdateRemoteMir
return m, nil
}
+func (c *remoteServiceClient) FindRemoteRepository(ctx context.Context, in *FindRemoteRepositoryRequest, opts ...grpc.CallOption) (*FindRemoteRepositoryResponse, error) {
+ out := new(FindRemoteRepositoryResponse)
+ err := grpc.Invoke(ctx, "/gitaly.RemoteService/FindRemoteRepository", in, out, c.cc, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// Server API for RemoteService service
type RemoteServiceServer interface {
@@ -290,6 +336,7 @@ type RemoteServiceServer interface {
FetchInternalRemote(context.Context, *FetchInternalRemoteRequest) (*FetchInternalRemoteResponse, error)
RemoveRemote(context.Context, *RemoveRemoteRequest) (*RemoveRemoteResponse, error)
UpdateRemoteMirror(RemoteService_UpdateRemoteMirrorServer) error
+ FindRemoteRepository(context.Context, *FindRemoteRepositoryRequest) (*FindRemoteRepositoryResponse, error)
}
func RegisterRemoteServiceServer(s *grpc.Server, srv RemoteServiceServer) {
@@ -376,6 +423,24 @@ func (x *remoteServiceUpdateRemoteMirrorServer) Recv() (*UpdateRemoteMirrorReque
return m, nil
}
+func _RemoteService_FindRemoteRepository_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(FindRemoteRepositoryRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(RemoteServiceServer).FindRemoteRepository(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.RemoteService/FindRemoteRepository",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(RemoteServiceServer).FindRemoteRepository(ctx, req.(*FindRemoteRepositoryRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _RemoteService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.RemoteService",
HandlerType: (*RemoteServiceServer)(nil),
@@ -392,6 +457,10 @@ var _RemoteService_serviceDesc = grpc.ServiceDesc{
MethodName: "RemoveRemote",
Handler: _RemoteService_RemoveRemote_Handler,
},
+ {
+ MethodName: "FindRemoteRepository",
+ Handler: _RemoteService_FindRemoteRepository_Handler,
+ },
},
Streams: []grpc.StreamDesc{
{
@@ -406,33 +475,36 @@ var _RemoteService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("remote.proto", fileDescriptor9) }
var fileDescriptor9 = []byte{
- // 434 bytes of a gzipped FileDescriptorProto
+ // 485 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xcd, 0x6e, 0xd3, 0x40,
- 0x10, 0xc6, 0x71, 0x1a, 0x92, 0x21, 0x45, 0xe9, 0xa6, 0xaa, 0x1c, 0xb7, 0x87, 0xb0, 0x08, 0xc9,
- 0xa7, 0x1c, 0x02, 0x9c, 0x11, 0x3d, 0x20, 0x01, 0x2a, 0x87, 0x45, 0x1c, 0x91, 0xd9, 0x26, 0x93,
- 0xc6, 0x92, 0xed, 0x35, 0xb3, 0x9b, 0x4a, 0x79, 0x0c, 0xde, 0x80, 0x23, 0xef, 0xc5, 0x8b, 0xa0,
- 0x78, 0xd7, 0xc6, 0x50, 0x27, 0x48, 0x20, 0x6e, 0xeb, 0xef, 0x9b, 0xbf, 0x6f, 0xe6, 0x93, 0x61,
- 0x48, 0x98, 0x29, 0x83, 0xb3, 0x82, 0x94, 0x51, 0xac, 0x77, 0x93, 0x18, 0x99, 0x6e, 0xc3, 0xa1,
- 0x5e, 0x4b, 0xc2, 0xa5, 0x45, 0xf9, 0x37, 0x0f, 0x46, 0x2f, 0x97, 0x4b, 0x51, 0x46, 0x0a, 0xfc,
- 0xbc, 0x41, 0x6d, 0xd8, 0x1c, 0x80, 0xb0, 0x50, 0x3a, 0x31, 0x8a, 0xb6, 0x81, 0x37, 0xf5, 0xa2,
- 0x07, 0x73, 0x36, 0xb3, 0xf9, 0x33, 0x51, 0x33, 0xa2, 0x11, 0xc5, 0x18, 0x74, 0x73, 0x99, 0x61,
- 0xd0, 0x99, 0x7a, 0xd1, 0x40, 0x94, 0x6f, 0x36, 0x02, 0x7f, 0x43, 0x69, 0xe0, 0x97, 0xd0, 0xee,
- 0xc9, 0x9e, 0xc0, 0xc3, 0x2c, 0x21, 0x52, 0x14, 0x13, 0xae, 0x32, 0x59, 0xe8, 0xe0, 0x68, 0xea,
- 0x47, 0x03, 0x71, 0x6c, 0x51, 0x61, 0xc1, 0x37, 0xdd, 0x7e, 0x77, 0x74, 0x54, 0x81, 0x2e, 0x94,
- 0x8f, 0xe1, 0xa4, 0x31, 0xa9, 0x2e, 0x54, 0xae, 0x91, 0x7f, 0x84, 0xf1, 0x0e, 0xb9, 0xc5, 0xff,
- 0xa2, 0x80, 0xcf, 0xe0, 0xf4, 0xd7, 0xf2, 0xb6, 0x2d, 0x3b, 0x83, 0x1e, 0xa1, 0xde, 0xa4, 0xa6,
- 0xac, 0xdd, 0x17, 0xee, 0x8b, 0x7f, 0xf1, 0x20, 0x7c, 0x85, 0x66, 0xb1, 0x7e, 0x9d, 0x1b, 0xa4,
- 0x5c, 0xa6, 0xff, 0x3e, 0xd6, 0x0b, 0x38, 0xb1, 0x77, 0x8c, 0x1b, 0xa9, 0x9d, 0xbd, 0xa9, 0x23,
- 0x72, 0x1d, 0x2b, 0x84, 0x3f, 0x87, 0xf3, 0xd6, 0x91, 0xfe, 0x20, 0xe5, 0xab, 0x07, 0x93, 0x0f,
- 0xc5, 0x52, 0x1a, 0xa7, 0xfd, 0xca, 0x5d, 0xe8, 0xef, 0x95, 0x4c, 0xa0, 0x4f, 0xb8, 0x8a, 0x1b,
- 0x4b, 0xbe, 0x4f, 0xb8, 0x7a, 0xb7, 0x73, 0xca, 0x33, 0x38, 0x53, 0x79, 0xba, 0x8d, 0xaf, 0x49,
- 0xe6, 0x8b, 0x35, 0xea, 0x38, 0x93, 0x66, 0xb1, 0x4e, 0xf2, 0x9b, 0xc0, 0x9f, 0xfa, 0xd1, 0x50,
- 0x9c, 0xee, 0xd8, 0x4b, 0x47, 0x5e, 0x39, 0x8e, 0x5f, 0x40, 0xd8, 0x36, 0xa1, 0x15, 0x36, 0xff,
- 0xde, 0x81, 0x63, 0x4b, 0xbc, 0x47, 0xba, 0x4d, 0x16, 0xc8, 0x2e, 0x61, 0x50, 0x3b, 0x88, 0x05,
- 0xd5, 0xb4, 0xbf, 0xdb, 0x3f, 0x9c, 0xb4, 0x30, 0xce, 0x6e, 0xf7, 0xd8, 0x27, 0x18, 0xb7, 0x6c,
- 0x93, 0xf1, 0x2a, 0x67, 0xff, 0xf5, 0xc3, 0xc7, 0x07, 0x63, 0xea, 0x0e, 0x6f, 0x61, 0xd8, 0xf4,
- 0x1c, 0x3b, 0xff, 0xb9, 0xd6, 0x3b, 0x46, 0x0f, 0x2f, 0xda, 0xc9, 0xba, 0x58, 0x0c, 0xec, 0xee,
- 0x8a, 0xd8, 0xa3, 0x2a, 0x6b, 0xef, 0x81, 0x43, 0x7e, 0x28, 0xa4, 0x2a, 0x1f, 0x79, 0xd7, 0xbd,
- 0xf2, 0x3f, 0xf2, 0xf4, 0x47, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4d, 0xc9, 0x74, 0x7e, 0x6d, 0x04,
- 0x00, 0x00,
+ 0x10, 0xc6, 0x75, 0x1a, 0x92, 0x21, 0x45, 0xe9, 0x26, 0xaa, 0x1c, 0x37, 0x87, 0xb0, 0x80, 0xe4,
+ 0x53, 0x0e, 0xe1, 0xe7, 0x8a, 0xe8, 0x01, 0x09, 0x50, 0x39, 0x2c, 0xe2, 0x88, 0x8c, 0xeb, 0x4c,
+ 0x1a, 0x4b, 0xfe, 0x63, 0x76, 0x53, 0x91, 0xc7, 0xe0, 0x0d, 0x38, 0xf2, 0x28, 0x3c, 0x16, 0xb2,
+ 0xbd, 0xeb, 0x18, 0xea, 0x04, 0x09, 0xc4, 0xcd, 0x3b, 0x33, 0xdf, 0xce, 0x7c, 0xf3, 0x7d, 0x6b,
+ 0x18, 0x10, 0x26, 0x99, 0xc2, 0x79, 0x4e, 0x99, 0xca, 0x58, 0xf7, 0x3a, 0x52, 0x41, 0xbc, 0x75,
+ 0x07, 0x72, 0x1d, 0x10, 0x2e, 0xab, 0x28, 0xff, 0x6e, 0xc1, 0xf0, 0xe5, 0x72, 0x29, 0xca, 0x4a,
+ 0x81, 0x9f, 0x37, 0x28, 0x15, 0x5b, 0x00, 0x10, 0xe6, 0x99, 0x8c, 0x54, 0x46, 0x5b, 0xc7, 0x9a,
+ 0x59, 0xde, 0xbd, 0x05, 0x9b, 0x57, 0xf8, 0xb9, 0xa8, 0x33, 0xa2, 0x51, 0xc5, 0x18, 0x74, 0xd2,
+ 0x20, 0x41, 0xe7, 0x68, 0x66, 0x79, 0x7d, 0x51, 0x7e, 0xb3, 0x21, 0xd8, 0x1b, 0x8a, 0x1d, 0xbb,
+ 0x0c, 0x15, 0x9f, 0xec, 0x31, 0xdc, 0x4f, 0x22, 0xa2, 0x8c, 0x7c, 0xc2, 0x55, 0x12, 0xe4, 0xd2,
+ 0x39, 0x9e, 0xd9, 0x5e, 0x5f, 0x9c, 0x54, 0x51, 0x51, 0x05, 0xdf, 0x74, 0x7a, 0x9d, 0xe1, 0xb1,
+ 0x09, 0xea, 0x52, 0x3e, 0x82, 0xd3, 0xc6, 0xa4, 0x32, 0xcf, 0x52, 0x89, 0xfc, 0x23, 0x8c, 0x8a,
+ 0xc8, 0x0d, 0xfe, 0x17, 0x06, 0x7c, 0x0e, 0xe3, 0x5f, 0xaf, 0xaf, 0xda, 0xb2, 0x33, 0xe8, 0x12,
+ 0xca, 0x4d, 0xac, 0xca, 0xbb, 0x7b, 0x42, 0x9f, 0xf8, 0x57, 0x0b, 0xdc, 0x57, 0xa8, 0xc2, 0xf5,
+ 0xeb, 0x54, 0x21, 0xa5, 0x41, 0xfc, 0xef, 0x63, 0xbd, 0x80, 0xd3, 0x4a, 0x47, 0xbf, 0x01, 0x3d,
+ 0xda, 0x0b, 0x1d, 0x92, 0xee, 0x68, 0x22, 0xfc, 0x19, 0x9c, 0xb7, 0x8e, 0xf4, 0x07, 0x2a, 0xdf,
+ 0x2c, 0x98, 0x7c, 0xc8, 0x97, 0x81, 0xd2, 0xdc, 0x2f, 0xb5, 0x42, 0x7f, 0xcf, 0x64, 0x02, 0x3d,
+ 0xc2, 0x95, 0xdf, 0x58, 0xf2, 0x5d, 0xc2, 0xd5, 0xbb, 0xc2, 0x29, 0x4f, 0xe1, 0x2c, 0x4b, 0xe3,
+ 0xad, 0x7f, 0x45, 0x41, 0x1a, 0xae, 0x51, 0xfa, 0x49, 0xa0, 0xc2, 0x75, 0x94, 0x5e, 0x3b, 0xf6,
+ 0xcc, 0xf6, 0x06, 0x62, 0x5c, 0x64, 0x2f, 0x74, 0xf2, 0x52, 0xe7, 0xf8, 0x14, 0xdc, 0xb6, 0x09,
+ 0xb5, 0x35, 0x0a, 0xde, 0x51, 0x5a, 0x1b, 0xa6, 0x1e, 0x49, 0x33, 0x28, 0x79, 0x17, 0xa9, 0x72,
+ 0xfa, 0xbe, 0xd0, 0x27, 0xfe, 0x1c, 0xa6, 0xed, 0xb0, 0xdd, 0xbe, 0xf0, 0x4b, 0x24, 0x95, 0x34,
+ 0xfb, 0xaa, 0x4e, 0x8b, 0x1f, 0x36, 0x9c, 0x54, 0xa0, 0xf7, 0x48, 0x37, 0x51, 0x88, 0xec, 0x02,
+ 0xfa, 0xb5, 0x61, 0x99, 0x63, 0x96, 0xf3, 0xfb, 0x6b, 0x73, 0x27, 0x2d, 0x19, 0x4d, 0xe1, 0x0e,
+ 0xfb, 0x04, 0xa3, 0x16, 0xf1, 0x18, 0x37, 0x98, 0xfd, 0x66, 0x73, 0x1f, 0x1e, 0xac, 0xa9, 0x3b,
+ 0xbc, 0x85, 0x41, 0xd3, 0xe2, 0xec, 0x7c, 0xa7, 0xe2, 0xad, 0x77, 0xe5, 0x4e, 0xdb, 0x93, 0xf5,
+ 0x65, 0x3e, 0xb0, 0xdb, 0x8a, 0xb0, 0x07, 0x06, 0xb5, 0xd7, 0x4f, 0x2e, 0x3f, 0x54, 0x62, 0xae,
+ 0xf7, 0x2c, 0x16, 0xc2, 0xb8, 0x4d, 0x1d, 0xb6, 0x23, 0xbb, 0x5f, 0x72, 0xf7, 0xd1, 0xe1, 0x22,
+ 0xd3, 0xe6, 0xaa, 0x5b, 0xfe, 0x1b, 0x9f, 0xfc, 0x0c, 0x00, 0x00, 0xff, 0xff, 0xe5, 0x0c, 0x2a,
+ 0x1a, 0x41, 0x05, 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 02ea8f01c..e7a27bee3 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
@@ -915,6 +915,38 @@ func (m *FindLicenseResponse) GetLicenseShortName() string {
return ""
}
+type GetInfoAttributesRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+}
+
+func (m *GetInfoAttributesRequest) Reset() { *m = GetInfoAttributesRequest{} }
+func (m *GetInfoAttributesRequest) String() string { return proto.CompactTextString(m) }
+func (*GetInfoAttributesRequest) ProtoMessage() {}
+func (*GetInfoAttributesRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{44} }
+
+func (m *GetInfoAttributesRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+type GetInfoAttributesResponse struct {
+ Attributes []byte `protobuf:"bytes,1,opt,name=attributes,proto3" json:"attributes,omitempty"`
+}
+
+func (m *GetInfoAttributesResponse) Reset() { *m = GetInfoAttributesResponse{} }
+func (m *GetInfoAttributesResponse) String() string { return proto.CompactTextString(m) }
+func (*GetInfoAttributesResponse) ProtoMessage() {}
+func (*GetInfoAttributesResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{45} }
+
+func (m *GetInfoAttributesResponse) GetAttributes() []byte {
+ if m != nil {
+ return m.Attributes
+ }
+ return nil
+}
+
func init() {
proto.RegisterType((*RepositoryExistsRequest)(nil), "gitaly.RepositoryExistsRequest")
proto.RegisterType((*RepositoryExistsResponse)(nil), "gitaly.RepositoryExistsResponse")
@@ -960,6 +992,8 @@ func init() {
proto.RegisterType((*CreateRepositoryFromBundleResponse)(nil), "gitaly.CreateRepositoryFromBundleResponse")
proto.RegisterType((*FindLicenseRequest)(nil), "gitaly.FindLicenseRequest")
proto.RegisterType((*FindLicenseResponse)(nil), "gitaly.FindLicenseResponse")
+ proto.RegisterType((*GetInfoAttributesRequest)(nil), "gitaly.GetInfoAttributesRequest")
+ proto.RegisterType((*GetInfoAttributesResponse)(nil), "gitaly.GetInfoAttributesResponse")
proto.RegisterEnum("gitaly.GetArchiveRequest_Format", GetArchiveRequest_Format_name, GetArchiveRequest_Format_value)
}
@@ -996,6 +1030,7 @@ type RepositoryServiceClient interface {
CreateRepositoryFromBundle(ctx context.Context, opts ...grpc.CallOption) (RepositoryService_CreateRepositoryFromBundleClient, error)
WriteConfig(ctx context.Context, in *WriteConfigRequest, opts ...grpc.CallOption) (*WriteConfigResponse, error)
FindLicense(ctx context.Context, in *FindLicenseRequest, opts ...grpc.CallOption) (*FindLicenseResponse, error)
+ GetInfoAttributes(ctx context.Context, in *GetInfoAttributesRequest, opts ...grpc.CallOption) (RepositoryService_GetInfoAttributesClient, error)
}
type repositoryServiceClient struct {
@@ -1275,6 +1310,38 @@ func (c *repositoryServiceClient) FindLicense(ctx context.Context, in *FindLicen
return out, nil
}
+func (c *repositoryServiceClient) GetInfoAttributes(ctx context.Context, in *GetInfoAttributesRequest, opts ...grpc.CallOption) (RepositoryService_GetInfoAttributesClient, error) {
+ stream, err := grpc.NewClientStream(ctx, &_RepositoryService_serviceDesc.Streams[3], c.cc, "/gitaly.RepositoryService/GetInfoAttributes", opts...)
+ if err != nil {
+ return nil, err
+ }
+ x := &repositoryServiceGetInfoAttributesClient{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 RepositoryService_GetInfoAttributesClient interface {
+ Recv() (*GetInfoAttributesResponse, error)
+ grpc.ClientStream
+}
+
+type repositoryServiceGetInfoAttributesClient struct {
+ grpc.ClientStream
+}
+
+func (x *repositoryServiceGetInfoAttributesClient) Recv() (*GetInfoAttributesResponse, error) {
+ m := new(GetInfoAttributesResponse)
+ if err := x.ClientStream.RecvMsg(m); err != nil {
+ return nil, err
+ }
+ return m, nil
+}
+
// Server API for RepositoryService service
type RepositoryServiceServer interface {
@@ -1300,6 +1367,7 @@ type RepositoryServiceServer interface {
CreateRepositoryFromBundle(RepositoryService_CreateRepositoryFromBundleServer) error
WriteConfig(context.Context, *WriteConfigRequest) (*WriteConfigResponse, error)
FindLicense(context.Context, *FindLicenseRequest) (*FindLicenseResponse, error)
+ GetInfoAttributes(*GetInfoAttributesRequest, RepositoryService_GetInfoAttributesServer) error
}
func RegisterRepositoryServiceServer(s *grpc.Server, srv RepositoryServiceServer) {
@@ -1716,6 +1784,27 @@ func _RepositoryService_FindLicense_Handler(srv interface{}, ctx context.Context
return interceptor(ctx, in, info, handler)
}
+func _RepositoryService_GetInfoAttributes_Handler(srv interface{}, stream grpc.ServerStream) error {
+ m := new(GetInfoAttributesRequest)
+ if err := stream.RecvMsg(m); err != nil {
+ return err
+ }
+ return srv.(RepositoryServiceServer).GetInfoAttributes(m, &repositoryServiceGetInfoAttributesServer{stream})
+}
+
+type RepositoryService_GetInfoAttributesServer interface {
+ Send(*GetInfoAttributesResponse) error
+ grpc.ServerStream
+}
+
+type repositoryServiceGetInfoAttributesServer struct {
+ grpc.ServerStream
+}
+
+func (x *repositoryServiceGetInfoAttributesServer) Send(m *GetInfoAttributesResponse) error {
+ return x.ServerStream.SendMsg(m)
+}
+
var _RepositoryService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.RepositoryService",
HandlerType: (*RepositoryServiceServer)(nil),
@@ -1813,6 +1902,11 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
Handler: _RepositoryService_CreateRepositoryFromBundle_Handler,
ClientStreams: true,
},
+ {
+ StreamName: "GetInfoAttributes",
+ Handler: _RepositoryService_GetInfoAttributes_Handler,
+ ServerStreams: true,
+ },
},
Metadata: "repository-service.proto",
}
@@ -1820,97 +1914,100 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor10) }
var fileDescriptor10 = []byte{
- // 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,
+ // 1508 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xef, 0x6e, 0xdb, 0xb6,
+ 0x16, 0xb7, 0xf3, 0xd7, 0x3e, 0x71, 0x5b, 0x87, 0x49, 0x1a, 0x45, 0x49, 0x9b, 0x84, 0xb7, 0xb8,
+ 0x37, 0xb7, 0xed, 0x0d, 0x8a, 0xe4, 0xcb, 0x05, 0x86, 0xa1, 0x48, 0x82, 0x26, 0xf1, 0xda, 0x14,
+ 0x99, 0xd2, 0xa1, 0x40, 0xb0, 0xc1, 0x50, 0x6c, 0xda, 0x16, 0x22, 0x8b, 0x2e, 0x49, 0xa7, 0x4d,
+ 0x3f, 0xef, 0xc3, 0x1e, 0x65, 0xcf, 0xb1, 0x57, 0xd8, 0x63, 0xec, 0x25, 0x06, 0x91, 0x94, 0x28,
+ 0x59, 0x52, 0x56, 0x40, 0x1d, 0xf6, 0x4d, 0x3c, 0x24, 0x7f, 0xe7, 0xf0, 0x1c, 0x9e, 0xc3, 0xdf,
+ 0x11, 0x58, 0x8c, 0x8c, 0x28, 0xf7, 0x04, 0x65, 0xb7, 0xff, 0xe3, 0x84, 0xdd, 0x78, 0x1d, 0xb2,
+ 0x3b, 0x62, 0x54, 0x50, 0x34, 0xd7, 0xf7, 0x84, 0xeb, 0xdf, 0xda, 0x0d, 0x3e, 0x70, 0x19, 0xe9,
+ 0x2a, 0x29, 0x3e, 0x83, 0x55, 0x27, 0xde, 0xf1, 0xea, 0x93, 0xc7, 0x05, 0x77, 0xc8, 0x87, 0x31,
+ 0xe1, 0x02, 0xed, 0x01, 0x18, 0x30, 0xab, 0xba, 0x55, 0xdd, 0x59, 0xd8, 0x43, 0xbb, 0x0a, 0x65,
+ 0xd7, 0x6c, 0x72, 0x12, 0xab, 0xf0, 0x1e, 0x58, 0x59, 0x38, 0x3e, 0xa2, 0x01, 0x27, 0xe8, 0x21,
+ 0xcc, 0x11, 0x29, 0x91, 0x58, 0x35, 0x47, 0x8f, 0xf0, 0x5b, 0xb9, 0xc7, 0xed, 0x5c, 0xb7, 0x82,
+ 0x0e, 0x23, 0x43, 0x12, 0x08, 0xd7, 0x2f, 0x63, 0xc3, 0x3a, 0xac, 0xe5, 0xe0, 0x29, 0x23, 0xb0,
+ 0x0f, 0x8b, 0x6a, 0xf2, 0x78, 0xec, 0x97, 0xd1, 0x82, 0xfe, 0x05, 0xf7, 0x3a, 0x8c, 0xb8, 0x82,
+ 0xb4, 0xaf, 0x3c, 0x31, 0x74, 0x47, 0xd6, 0x94, 0x3c, 0x54, 0x43, 0x09, 0x0f, 0xa5, 0x0c, 0x2f,
+ 0x03, 0x4a, 0x6a, 0xd3, 0x36, 0x8c, 0x60, 0xe5, 0xc4, 0x65, 0x57, 0x6e, 0x9f, 0x1c, 0x51, 0xdf,
+ 0x27, 0x1d, 0xf1, 0xb7, 0xdb, 0x61, 0xc1, 0xc3, 0x49, 0x8d, 0xda, 0x96, 0xd7, 0xb0, 0x62, 0x80,
+ 0x2f, 0xbc, 0xcf, 0xa4, 0x8c, 0xe7, 0x9f, 0xc3, 0xc3, 0x49, 0x30, 0x1d, 0x7b, 0x04, 0x33, 0xdc,
+ 0xfb, 0x4c, 0x24, 0xce, 0xb4, 0x23, 0xbf, 0xf1, 0x35, 0xac, 0x1d, 0x8c, 0x46, 0xfe, 0xed, 0x89,
+ 0x27, 0x5c, 0x21, 0x98, 0x77, 0x35, 0x16, 0xa4, 0xcc, 0xe5, 0x43, 0x36, 0xd4, 0x18, 0xb9, 0xf1,
+ 0xb8, 0x47, 0x03, 0xe9, 0x85, 0x86, 0x13, 0x8f, 0xf1, 0x06, 0xd8, 0x79, 0xca, 0xb4, 0x17, 0x7e,
+ 0x9e, 0x02, 0x74, 0x4c, 0x44, 0x67, 0xe0, 0x90, 0x21, 0x15, 0x65, 0x7c, 0x10, 0xde, 0x72, 0x26,
+ 0x41, 0xa4, 0x09, 0x75, 0x47, 0x8f, 0xd0, 0x32, 0xcc, 0xf6, 0x28, 0xeb, 0x10, 0x6b, 0x5a, 0xc6,
+ 0x47, 0x0d, 0xd0, 0x2a, 0xcc, 0x07, 0xb4, 0x2d, 0xdc, 0x3e, 0xb7, 0x66, 0x54, 0x52, 0x04, 0xf4,
+ 0x9d, 0xdb, 0xe7, 0xc8, 0x82, 0x79, 0xe1, 0x0d, 0x09, 0x1d, 0x0b, 0x6b, 0x76, 0xab, 0xba, 0x33,
+ 0xeb, 0x44, 0xc3, 0x70, 0x0b, 0xe7, 0x83, 0xf6, 0x35, 0xb9, 0xb5, 0xe6, 0x94, 0x06, 0xce, 0x07,
+ 0xaf, 0xc9, 0x2d, 0xda, 0x84, 0x85, 0xeb, 0x80, 0x7e, 0x0c, 0xda, 0x03, 0x1a, 0x26, 0xd9, 0xbc,
+ 0x9c, 0x04, 0x29, 0x3a, 0x0d, 0x25, 0x68, 0x0d, 0x6a, 0x01, 0x6d, 0x8f, 0xd8, 0x38, 0x20, 0x56,
+ 0x5d, 0x6a, 0x9b, 0x0f, 0xe8, 0x79, 0x38, 0xfc, 0x6e, 0xa6, 0x56, 0x6b, 0xd6, 0xf1, 0x0a, 0x2c,
+ 0xa5, 0xbc, 0xa0, 0xbd, 0x73, 0x06, 0xab, 0x47, 0xf2, 0x36, 0x25, 0x8e, 0x5c, 0xe2, 0x96, 0xd8,
+ 0x60, 0x65, 0xe1, 0xb4, 0xaa, 0x3f, 0xaa, 0xb0, 0x78, 0x42, 0xc4, 0x01, 0xeb, 0x0c, 0xbc, 0x9b,
+ 0x52, 0x71, 0x58, 0x87, 0x7a, 0x87, 0x0e, 0x87, 0x9e, 0x68, 0x7b, 0x5d, 0x1d, 0x8a, 0x9a, 0x12,
+ 0xb4, 0xba, 0x61, 0x90, 0x46, 0x8c, 0xf4, 0xbc, 0x4f, 0x32, 0x1a, 0x75, 0x47, 0x8f, 0xd0, 0xff,
+ 0x61, 0xae, 0x47, 0xd9, 0xd0, 0x15, 0x32, 0x1a, 0xf7, 0xf7, 0xb6, 0x22, 0x25, 0x19, 0x9b, 0x76,
+ 0x8f, 0xe5, 0x3a, 0x47, 0xaf, 0xc7, 0xfb, 0x30, 0xa7, 0x24, 0x68, 0x1e, 0xa6, 0x2f, 0x5b, 0xe7,
+ 0xcd, 0x4a, 0xf8, 0xf1, 0xee, 0xc0, 0x69, 0x56, 0x11, 0xc0, 0xdc, 0xbb, 0x03, 0xa7, 0x7d, 0x72,
+ 0xd9, 0x9c, 0x42, 0x0b, 0x30, 0x1f, 0x7e, 0x1f, 0x5e, 0xee, 0x35, 0xa7, 0xf1, 0x0e, 0xa0, 0x24,
+ 0xb0, 0xc9, 0x95, 0xae, 0x2b, 0x5c, 0x79, 0xce, 0x86, 0x23, 0xbf, 0xc3, 0x10, 0x9c, 0xba, 0xfc,
+ 0x0d, 0xed, 0xb8, 0xfe, 0x21, 0x73, 0x83, 0xce, 0xa0, 0x54, 0xa6, 0xe0, 0x17, 0x60, 0x65, 0xe1,
+ 0xb4, 0xfa, 0x65, 0x98, 0xbd, 0x71, 0xfd, 0x31, 0xd1, 0x55, 0x5a, 0x0d, 0xf0, 0xef, 0x55, 0xb0,
+ 0xe4, 0xdd, 0xb8, 0xa0, 0x63, 0xd6, 0x21, 0x6a, 0x57, 0x99, 0xf8, 0xbc, 0x84, 0x45, 0x2e, 0xa1,
+ 0xda, 0x89, 0xad, 0x53, 0x85, 0x5b, 0x9b, 0x6a, 0xb1, 0x93, 0x2a, 0x7c, 0x1a, 0xe0, 0x4a, 0x1a,
+ 0x23, 0x43, 0xd9, 0x70, 0x1a, 0x3c, 0x61, 0x20, 0x7a, 0x04, 0x20, 0x5c, 0xd6, 0x27, 0xa2, 0xcd,
+ 0x48, 0x4f, 0x06, 0xb5, 0xe1, 0xd4, 0x95, 0xc4, 0x21, 0x3d, 0xbc, 0x0f, 0x6b, 0x39, 0x87, 0x32,
+ 0xef, 0x15, 0x23, 0x7c, 0xec, 0x8b, 0xe8, 0xbd, 0x52, 0x23, 0x7c, 0x00, 0x0b, 0xc7, 0xbc, 0x73,
+ 0x5d, 0xc6, 0xff, 0x4f, 0xa0, 0xa1, 0x20, 0x8c, 0xcf, 0x09, 0x63, 0x94, 0xe9, 0x98, 0xab, 0x01,
+ 0xfe, 0xad, 0x0a, 0x0f, 0xde, 0x33, 0x2f, 0x4c, 0x94, 0x5e, 0x19, 0x57, 0x37, 0x61, 0x3a, 0x3c,
+ 0xbd, 0x2a, 0x89, 0xe1, 0x67, 0xaa, 0x52, 0x4e, 0xa7, 0x2b, 0x25, 0xda, 0x86, 0x06, 0xf5, 0xbb,
+ 0xed, 0x78, 0x5e, 0x39, 0x6d, 0x81, 0xfa, 0x5d, 0x27, 0x5a, 0x12, 0xd7, 0xb2, 0xd9, 0x64, 0x2d,
+ 0x5b, 0x86, 0x59, 0x3e, 0x20, 0xbe, 0x2f, 0xcb, 0x52, 0xcd, 0x51, 0x03, 0xbc, 0x03, 0x4d, 0x73,
+ 0x86, 0x3b, 0x8f, 0x3b, 0x80, 0xe5, 0x63, 0x2f, 0xe8, 0x9e, 0x11, 0xd6, 0x27, 0x87, 0x2e, 0x2f,
+ 0x95, 0xfd, 0x1b, 0x50, 0x8f, 0x0e, 0xc0, 0xad, 0xa9, 0xad, 0xe9, 0x30, 0xec, 0xb1, 0x00, 0x3f,
+ 0x83, 0x95, 0x09, 0x4d, 0x26, 0xf5, 0xae, 0x5c, 0xae, 0xae, 0x7e, 0xdd, 0x91, 0xdf, 0xf8, 0x97,
+ 0x2a, 0x2c, 0xaa, 0x7a, 0x75, 0x4c, 0xd9, 0xf5, 0x3f, 0x79, 0xe5, 0x43, 0x3a, 0x91, 0xb4, 0x24,
+ 0xa6, 0x34, 0x6b, 0x2d, 0xee, 0x90, 0xd0, 0xd8, 0x56, 0x70, 0xce, 0x68, 0x9f, 0x11, 0xce, 0x4b,
+ 0x96, 0x4e, 0x26, 0xe1, 0x12, 0xa5, 0x53, 0x09, 0x5a, 0x5d, 0xfc, 0x2d, 0xd8, 0x79, 0xda, 0xb4,
+ 0x03, 0x37, 0x61, 0xc1, 0x0b, 0xda, 0x23, 0x2d, 0xd6, 0x89, 0x03, 0x5e, 0xbc, 0x50, 0x19, 0x7b,
+ 0xf1, 0x61, 0xec, 0xf2, 0xc1, 0x57, 0x33, 0x96, 0x4b, 0xb8, 0x84, 0xb1, 0x4a, 0x10, 0x19, 0x9b,
+ 0xd5, 0xf6, 0xa5, 0xc6, 0xf6, 0xe0, 0xf1, 0xe4, 0x4b, 0x75, 0xcc, 0xe8, 0xf0, 0x07, 0xe7, 0x4d,
+ 0xc9, 0x74, 0x1c, 0x33, 0x5f, 0xdb, 0x1a, 0x7e, 0xe2, 0x6d, 0xd8, 0x2c, 0xd4, 0xa3, 0x83, 0xdc,
+ 0x82, 0x25, 0xb5, 0xe4, 0x70, 0x1c, 0x74, 0xfd, 0x52, 0x2c, 0xed, 0x29, 0x2c, 0xa7, 0xa1, 0xee,
+ 0x78, 0x77, 0x08, 0x20, 0x99, 0xbd, 0x47, 0x34, 0xe8, 0x79, 0xfd, 0x92, 0x71, 0xea, 0x8d, 0x7d,
+ 0xbf, 0x3d, 0x72, 0xc5, 0x20, 0x8a, 0x53, 0x28, 0x38, 0x77, 0xc5, 0x00, 0x3f, 0x83, 0xa5, 0x94,
+ 0x9a, 0x3b, 0xeb, 0xc4, 0x35, 0x6c, 0xe7, 0x79, 0xab, 0xb4, 0x63, 0x62, 0x07, 0x4c, 0x25, 0x1c,
+ 0xf0, 0x04, 0xf0, 0x5d, 0xca, 0x74, 0x74, 0x4e, 0x01, 0x85, 0x05, 0xe5, 0x8d, 0xd7, 0x21, 0x41,
+ 0xa9, 0xc2, 0x85, 0x8f, 0x60, 0x29, 0x85, 0xa4, 0x3d, 0xf1, 0x1c, 0x90, 0xaf, 0x44, 0x6d, 0x3e,
+ 0xa0, 0x4c, 0xb4, 0x03, 0x77, 0x18, 0x95, 0xa9, 0xa6, 0x9e, 0xb9, 0x08, 0x27, 0xde, 0xba, 0x43,
+ 0x12, 0x76, 0x54, 0x27, 0x44, 0xb4, 0x82, 0x1e, 0x3d, 0xf8, 0x1a, 0xc4, 0x1a, 0x7f, 0x03, 0x6b,
+ 0x39, 0x78, 0xda, 0xb4, 0xc7, 0x00, 0x86, 0x51, 0xeb, 0x48, 0x25, 0x24, 0x7b, 0xbf, 0x3e, 0x90,
+ 0x2d, 0x57, 0xd4, 0x15, 0xa8, 0x9e, 0x14, 0xbd, 0x87, 0xe6, 0x64, 0xa3, 0x88, 0x36, 0xb3, 0x66,
+ 0xa4, 0x3a, 0x52, 0x7b, 0xab, 0x78, 0x81, 0x0e, 0x44, 0x05, 0x5d, 0x46, 0x0d, 0x5e, 0xa2, 0xfb,
+ 0x43, 0xc9, 0x8d, 0xb9, 0x8d, 0xa6, 0xbd, 0x7d, 0xc7, 0x8a, 0x18, 0xfb, 0x15, 0x80, 0x69, 0xe7,
+ 0xd0, 0x5a, 0x7a, 0x4b, 0xa2, 0xa1, 0xb4, 0xed, 0xbc, 0xa9, 0x18, 0xe6, 0x7b, 0xb8, 0x9f, 0xee,
+ 0xc6, 0xd0, 0xa3, 0x98, 0x67, 0xe6, 0xf5, 0x85, 0xf6, 0xe3, 0xa2, 0xe9, 0x24, 0x64, 0xba, 0xf3,
+ 0x32, 0x90, 0xb9, 0xed, 0x9d, 0x81, 0xcc, 0x6f, 0xd8, 0x70, 0x05, 0xfd, 0x04, 0x28, 0xdb, 0x31,
+ 0xa1, 0xd8, 0x4f, 0x85, 0xad, 0x9b, 0x8d, 0xef, 0x5a, 0x12, 0xc3, 0x9f, 0xc2, 0x42, 0xa2, 0xd7,
+ 0x40, 0xb1, 0xc7, 0xb2, 0x6d, 0x98, 0xbd, 0x9e, 0x3b, 0x17, 0x23, 0xbd, 0x87, 0xe6, 0x64, 0x8a,
+ 0x9a, 0xab, 0x54, 0xd0, 0xb8, 0x98, 0xab, 0x54, 0xd8, 0x8a, 0x54, 0xd0, 0x09, 0x80, 0xa1, 0xe7,
+ 0x26, 0xdc, 0x99, 0x5e, 0xc0, 0x84, 0x3b, 0xcb, 0xe6, 0x71, 0xe5, 0x45, 0x35, 0xb4, 0x70, 0x92,
+ 0x6e, 0x1b, 0x0b, 0x0b, 0x78, 0xbd, 0xb1, 0xb0, 0x88, 0xa9, 0xab, 0xcb, 0x9e, 0xe1, 0xaf, 0xe6,
+ 0xb2, 0x17, 0xf1, 0x75, 0x73, 0xd9, 0x0b, 0xc9, 0x2f, 0xae, 0xa0, 0x7d, 0x98, 0x09, 0x39, 0x2a,
+ 0x5a, 0x8a, 0x17, 0x1b, 0xd2, 0x6b, 0x2f, 0xa7, 0x85, 0xf1, 0xa6, 0x97, 0x50, 0x8b, 0xd8, 0x1e,
+ 0x5a, 0x8d, 0xd6, 0x4c, 0x70, 0x58, 0xdb, 0xca, 0x4e, 0xc4, 0x00, 0x6f, 0xe1, 0x5e, 0x8a, 0x9a,
+ 0xa1, 0x8d, 0x58, 0x53, 0x0e, 0x37, 0xb4, 0x1f, 0x15, 0xcc, 0x26, 0x53, 0xd6, 0x50, 0x26, 0x13,
+ 0xc3, 0x0c, 0xa1, 0x33, 0x31, 0xcc, 0x61, 0x58, 0x32, 0x19, 0xb2, 0xac, 0xc7, 0x24, 0x43, 0x21,
+ 0xff, 0x32, 0xc9, 0x50, 0x4c, 0x9a, 0x22, 0xf8, 0x49, 0x9e, 0x92, 0x84, 0x2f, 0x60, 0x4c, 0x49,
+ 0xf8, 0x22, 0x9a, 0x83, 0x2b, 0xc8, 0xcf, 0x36, 0xf0, 0x9a, 0x5f, 0xa0, 0x7f, 0x17, 0xe5, 0x41,
+ 0x9a, 0xe8, 0xd8, 0xff, 0xf9, 0xcb, 0x75, 0xb1, 0xb6, 0x33, 0x68, 0x24, 0xf9, 0x05, 0x5a, 0x4f,
+ 0x6f, 0x4d, 0xbd, 0xd3, 0xf6, 0x46, 0xfe, 0x64, 0x22, 0x79, 0x3e, 0x82, 0x5d, 0xfc, 0x02, 0xa3,
+ 0xff, 0xde, 0x65, 0x57, 0x5a, 0xd5, 0xd3, 0x2f, 0x59, 0x1a, 0x29, 0xde, 0xa9, 0x86, 0x15, 0x2a,
+ 0x41, 0x4a, 0x4c, 0x85, 0xca, 0x12, 0x22, 0x53, 0xa1, 0x72, 0x58, 0x8c, 0xae, 0x75, 0xe6, 0x51,
+ 0x4f, 0xd4, 0xba, 0x0c, 0x67, 0x48, 0xd4, 0xba, 0x2c, 0x0b, 0xc0, 0x15, 0xf4, 0xa3, 0xfc, 0x3d,
+ 0x92, 0x7e, 0x89, 0x51, 0xf2, 0x2f, 0x45, 0xee, 0xa3, 0x6f, 0x12, 0xbe, 0xf0, 0x19, 0x0f, 0x5d,
+ 0x7d, 0x35, 0x27, 0xff, 0x09, 0xef, 0xff, 0x19, 0x00, 0x00, 0xff, 0xff, 0x3d, 0x46, 0xbc, 0xfa,
+ 0x45, 0x16, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 7cbe63704..61c7f31d2 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -201,12 +201,12 @@
"revisionTime": "2017-12-31T12:27:32Z"
},
{
- "checksumSHA1": "1Wl8zKKHxWE55uB6OouC5Ztz0lY=",
+ "checksumSHA1": "pGwAMLuNO1mViUKm0Ep1cV+WmHY=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
- "revision": "4d256c2c6403d420c598c1649b1d26fa4384bb1d",
- "revisionTime": "2018-03-08T23:20:01Z",
- "version": "v0.89.0",
- "versionExact": "v0.89.0"
+ "revision": "af2486f8290ff4b044ba7decb66214fbf72e1311",
+ "revisionTime": "2018-03-19T11:33:15Z",
+ "version": "v0.90.0",
+ "versionExact": "v0.90.0"
},
{
"checksumSHA1": "nqWNlnMmVpt628zzvyo6Yv2CX5Q=",