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:
authorAlejandro Rodríguez <alejorro70@gmail.com>2017-11-06 17:12:43 +0300
committerAlejandro Rodríguez <alejorro70@gmail.com>2017-11-06 19:54:09 +0300
commitb9cbe1979ef6814d846d9096f8c6451516a5cf7d (patch)
tree426e416d988cfd3fc3e77b219155e4cbefdcefbf
parentdb784f3f4f5f2b5753948d4e2322025ac5e47dc7 (diff)
Update gitaly-proto to v0.52.0
-rw-r--r--internal/service/repository/is_empty.go11
-rw-r--r--internal/service/wiki/get_all_pages.go10
-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/repository-service.pb.go220
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/wiki.pb.go206
-rw-r--r--vendor/vendor.json10
7 files changed, 333 insertions, 130 deletions
diff --git a/internal/service/repository/is_empty.go b/internal/service/repository/is_empty.go
new file mode 100644
index 000000000..d90514d2f
--- /dev/null
+++ b/internal/service/repository/is_empty.go
@@ -0,0 +1,11 @@
+package repository
+
+import (
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+ "golang.org/x/net/context"
+)
+
+func (*server) RepositoryIsEmpty(ctx context.Context, in *pb.RepositoryIsEmptyRequest) (*pb.RepositoryIsEmptyResponse, error) {
+ return nil, helper.Unimplemented
+}
diff --git a/internal/service/wiki/get_all_pages.go b/internal/service/wiki/get_all_pages.go
new file mode 100644
index 000000000..524e05733
--- /dev/null
+++ b/internal/service/wiki/get_all_pages.go
@@ -0,0 +1,10 @@
+package wiki
+
+import (
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+)
+
+func (s *server) WikiGetAllPages(request *pb.WikiGetAllPagesRequest, stream pb.WikiService_WikiGetAllPagesServer) 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 c5d4cee36..4f9b378b4 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
@@ -1 +1 @@
-0.51.0
+0.52.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 fd8ed7261..98e58f3ad 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
@@ -115,6 +115,8 @@ It has these top-level messages:
FindBranchResponse
RepositoryExistsRequest
RepositoryExistsResponse
+ RepositoryIsEmptyRequest
+ RepositoryIsEmptyResponse
RepackIncrementalRequest
RepackIncrementalResponse
RepackFullRequest
@@ -167,6 +169,8 @@ It has these top-level messages:
WikiFindPageResponse
WikiFindFileRequest
WikiFindFileResponse
+ WikiGetAllPagesRequest
+ WikiGetAllPagesResponse
*/
package gitaly
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 c4cca7791..866575f07 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
@@ -42,7 +42,7 @@ var GetArchiveRequest_Format_value = map[string]int32{
func (x GetArchiveRequest_Format) String() string {
return proto.EnumName(GetArchiveRequest_Format_name, int32(x))
}
-func (GetArchiveRequest_Format) EnumDescriptor() ([]byte, []int) { return fileDescriptor8, []int{16, 0} }
+func (GetArchiveRequest_Format) EnumDescriptor() ([]byte, []int) { return fileDescriptor8, []int{18, 0} }
type RepositoryExistsRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
@@ -76,6 +76,38 @@ func (m *RepositoryExistsResponse) GetExists() bool {
return false
}
+type RepositoryIsEmptyRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+}
+
+func (m *RepositoryIsEmptyRequest) Reset() { *m = RepositoryIsEmptyRequest{} }
+func (m *RepositoryIsEmptyRequest) String() string { return proto.CompactTextString(m) }
+func (*RepositoryIsEmptyRequest) ProtoMessage() {}
+func (*RepositoryIsEmptyRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{2} }
+
+func (m *RepositoryIsEmptyRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+type RepositoryIsEmptyResponse struct {
+ IsEmpty bool `protobuf:"varint,1,opt,name=is_empty,json=isEmpty" json:"is_empty,omitempty"`
+}
+
+func (m *RepositoryIsEmptyResponse) Reset() { *m = RepositoryIsEmptyResponse{} }
+func (m *RepositoryIsEmptyResponse) String() string { return proto.CompactTextString(m) }
+func (*RepositoryIsEmptyResponse) ProtoMessage() {}
+func (*RepositoryIsEmptyResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{3} }
+
+func (m *RepositoryIsEmptyResponse) GetIsEmpty() bool {
+ if m != nil {
+ return m.IsEmpty
+ }
+ return false
+}
+
type RepackIncrementalRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
}
@@ -83,7 +115,7 @@ type RepackIncrementalRequest struct {
func (m *RepackIncrementalRequest) Reset() { *m = RepackIncrementalRequest{} }
func (m *RepackIncrementalRequest) String() string { return proto.CompactTextString(m) }
func (*RepackIncrementalRequest) ProtoMessage() {}
-func (*RepackIncrementalRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{2} }
+func (*RepackIncrementalRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{4} }
func (m *RepackIncrementalRequest) GetRepository() *Repository {
if m != nil {
@@ -98,7 +130,7 @@ type RepackIncrementalResponse struct {
func (m *RepackIncrementalResponse) Reset() { *m = RepackIncrementalResponse{} }
func (m *RepackIncrementalResponse) String() string { return proto.CompactTextString(m) }
func (*RepackIncrementalResponse) ProtoMessage() {}
-func (*RepackIncrementalResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{3} }
+func (*RepackIncrementalResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{5} }
type RepackFullRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
@@ -108,7 +140,7 @@ type RepackFullRequest struct {
func (m *RepackFullRequest) Reset() { *m = RepackFullRequest{} }
func (m *RepackFullRequest) String() string { return proto.CompactTextString(m) }
func (*RepackFullRequest) ProtoMessage() {}
-func (*RepackFullRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{4} }
+func (*RepackFullRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{6} }
func (m *RepackFullRequest) GetRepository() *Repository {
if m != nil {
@@ -130,7 +162,7 @@ type RepackFullResponse struct {
func (m *RepackFullResponse) Reset() { *m = RepackFullResponse{} }
func (m *RepackFullResponse) String() string { return proto.CompactTextString(m) }
func (*RepackFullResponse) ProtoMessage() {}
-func (*RepackFullResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{5} }
+func (*RepackFullResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{7} }
type GarbageCollectRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
@@ -140,7 +172,7 @@ type GarbageCollectRequest struct {
func (m *GarbageCollectRequest) Reset() { *m = GarbageCollectRequest{} }
func (m *GarbageCollectRequest) String() string { return proto.CompactTextString(m) }
func (*GarbageCollectRequest) ProtoMessage() {}
-func (*GarbageCollectRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{6} }
+func (*GarbageCollectRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{8} }
func (m *GarbageCollectRequest) GetRepository() *Repository {
if m != nil {
@@ -162,7 +194,7 @@ type GarbageCollectResponse struct {
func (m *GarbageCollectResponse) Reset() { *m = GarbageCollectResponse{} }
func (m *GarbageCollectResponse) String() string { return proto.CompactTextString(m) }
func (*GarbageCollectResponse) ProtoMessage() {}
-func (*GarbageCollectResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{7} }
+func (*GarbageCollectResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{9} }
type RepositorySizeRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
@@ -171,7 +203,7 @@ type RepositorySizeRequest struct {
func (m *RepositorySizeRequest) Reset() { *m = RepositorySizeRequest{} }
func (m *RepositorySizeRequest) String() string { return proto.CompactTextString(m) }
func (*RepositorySizeRequest) ProtoMessage() {}
-func (*RepositorySizeRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{8} }
+func (*RepositorySizeRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{10} }
func (m *RepositorySizeRequest) GetRepository() *Repository {
if m != nil {
@@ -188,7 +220,7 @@ type RepositorySizeResponse struct {
func (m *RepositorySizeResponse) Reset() { *m = RepositorySizeResponse{} }
func (m *RepositorySizeResponse) String() string { return proto.CompactTextString(m) }
func (*RepositorySizeResponse) ProtoMessage() {}
-func (*RepositorySizeResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{9} }
+func (*RepositorySizeResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{11} }
func (m *RepositorySizeResponse) GetSize() int64 {
if m != nil {
@@ -205,7 +237,7 @@ type ApplyGitattributesRequest struct {
func (m *ApplyGitattributesRequest) Reset() { *m = ApplyGitattributesRequest{} }
func (m *ApplyGitattributesRequest) String() string { return proto.CompactTextString(m) }
func (*ApplyGitattributesRequest) ProtoMessage() {}
-func (*ApplyGitattributesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{10} }
+func (*ApplyGitattributesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{12} }
func (m *ApplyGitattributesRequest) GetRepository() *Repository {
if m != nil {
@@ -227,7 +259,7 @@ type ApplyGitattributesResponse struct {
func (m *ApplyGitattributesResponse) Reset() { *m = ApplyGitattributesResponse{} }
func (m *ApplyGitattributesResponse) String() string { return proto.CompactTextString(m) }
func (*ApplyGitattributesResponse) ProtoMessage() {}
-func (*ApplyGitattributesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{11} }
+func (*ApplyGitattributesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{13} }
type FetchRemoteRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
@@ -242,7 +274,7 @@ type FetchRemoteRequest struct {
func (m *FetchRemoteRequest) Reset() { *m = FetchRemoteRequest{} }
func (m *FetchRemoteRequest) String() string { return proto.CompactTextString(m) }
func (*FetchRemoteRequest) ProtoMessage() {}
-func (*FetchRemoteRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{12} }
+func (*FetchRemoteRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{14} }
func (m *FetchRemoteRequest) GetRepository() *Repository {
if m != nil {
@@ -299,7 +331,7 @@ type FetchRemoteResponse struct {
func (m *FetchRemoteResponse) Reset() { *m = FetchRemoteResponse{} }
func (m *FetchRemoteResponse) String() string { return proto.CompactTextString(m) }
func (*FetchRemoteResponse) ProtoMessage() {}
-func (*FetchRemoteResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{13} }
+func (*FetchRemoteResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{15} }
type CreateRepositoryRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
@@ -308,7 +340,7 @@ type CreateRepositoryRequest struct {
func (m *CreateRepositoryRequest) Reset() { *m = CreateRepositoryRequest{} }
func (m *CreateRepositoryRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryRequest) ProtoMessage() {}
-func (*CreateRepositoryRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{14} }
+func (*CreateRepositoryRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{16} }
func (m *CreateRepositoryRequest) GetRepository() *Repository {
if m != nil {
@@ -323,7 +355,7 @@ type CreateRepositoryResponse struct {
func (m *CreateRepositoryResponse) Reset() { *m = CreateRepositoryResponse{} }
func (m *CreateRepositoryResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryResponse) ProtoMessage() {}
-func (*CreateRepositoryResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{15} }
+func (*CreateRepositoryResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{17} }
type GetArchiveRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
@@ -335,7 +367,7 @@ type GetArchiveRequest struct {
func (m *GetArchiveRequest) Reset() { *m = GetArchiveRequest{} }
func (m *GetArchiveRequest) String() string { return proto.CompactTextString(m) }
func (*GetArchiveRequest) ProtoMessage() {}
-func (*GetArchiveRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{16} }
+func (*GetArchiveRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{18} }
func (m *GetArchiveRequest) GetRepository() *Repository {
if m != nil {
@@ -372,7 +404,7 @@ type GetArchiveResponse struct {
func (m *GetArchiveResponse) Reset() { *m = GetArchiveResponse{} }
func (m *GetArchiveResponse) String() string { return proto.CompactTextString(m) }
func (*GetArchiveResponse) ProtoMessage() {}
-func (*GetArchiveResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{17} }
+func (*GetArchiveResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{19} }
func (m *GetArchiveResponse) GetData() []byte {
if m != nil {
@@ -388,7 +420,7 @@ type HasLocalBranchesRequest struct {
func (m *HasLocalBranchesRequest) Reset() { *m = HasLocalBranchesRequest{} }
func (m *HasLocalBranchesRequest) String() string { return proto.CompactTextString(m) }
func (*HasLocalBranchesRequest) ProtoMessage() {}
-func (*HasLocalBranchesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{18} }
+func (*HasLocalBranchesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{20} }
func (m *HasLocalBranchesRequest) GetRepository() *Repository {
if m != nil {
@@ -404,7 +436,7 @@ type HasLocalBranchesResponse struct {
func (m *HasLocalBranchesResponse) Reset() { *m = HasLocalBranchesResponse{} }
func (m *HasLocalBranchesResponse) String() string { return proto.CompactTextString(m) }
func (*HasLocalBranchesResponse) ProtoMessage() {}
-func (*HasLocalBranchesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{19} }
+func (*HasLocalBranchesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{21} }
func (m *HasLocalBranchesResponse) GetValue() bool {
if m != nil {
@@ -421,7 +453,7 @@ type ChangeStorageRequest struct {
func (m *ChangeStorageRequest) Reset() { *m = ChangeStorageRequest{} }
func (m *ChangeStorageRequest) String() string { return proto.CompactTextString(m) }
func (*ChangeStorageRequest) ProtoMessage() {}
-func (*ChangeStorageRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{20} }
+func (*ChangeStorageRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{22} }
func (m *ChangeStorageRequest) GetRepository() *Repository {
if m != nil {
@@ -443,11 +475,13 @@ type ChangeStorageResponse struct {
func (m *ChangeStorageResponse) Reset() { *m = ChangeStorageResponse{} }
func (m *ChangeStorageResponse) String() string { return proto.CompactTextString(m) }
func (*ChangeStorageResponse) ProtoMessage() {}
-func (*ChangeStorageResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{21} }
+func (*ChangeStorageResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{23} }
func init() {
proto.RegisterType((*RepositoryExistsRequest)(nil), "gitaly.RepositoryExistsRequest")
proto.RegisterType((*RepositoryExistsResponse)(nil), "gitaly.RepositoryExistsResponse")
+ proto.RegisterType((*RepositoryIsEmptyRequest)(nil), "gitaly.RepositoryIsEmptyRequest")
+ proto.RegisterType((*RepositoryIsEmptyResponse)(nil), "gitaly.RepositoryIsEmptyResponse")
proto.RegisterType((*RepackIncrementalRequest)(nil), "gitaly.RepackIncrementalRequest")
proto.RegisterType((*RepackIncrementalResponse)(nil), "gitaly.RepackIncrementalResponse")
proto.RegisterType((*RepackFullRequest)(nil), "gitaly.RepackFullRequest")
@@ -483,6 +517,7 @@ const _ = grpc.SupportPackageIsVersion4
type RepositoryServiceClient interface {
RepositoryExists(ctx context.Context, in *RepositoryExistsRequest, opts ...grpc.CallOption) (*RepositoryExistsResponse, error)
+ RepositoryIsEmpty(ctx context.Context, in *RepositoryIsEmptyRequest, opts ...grpc.CallOption) (*RepositoryIsEmptyResponse, error)
RepackIncremental(ctx context.Context, in *RepackIncrementalRequest, opts ...grpc.CallOption) (*RepackIncrementalResponse, error)
RepackFull(ctx context.Context, in *RepackFullRequest, opts ...grpc.CallOption) (*RepackFullResponse, error)
GarbageCollect(ctx context.Context, in *GarbageCollectRequest, opts ...grpc.CallOption) (*GarbageCollectResponse, error)
@@ -512,6 +547,15 @@ func (c *repositoryServiceClient) RepositoryExists(ctx context.Context, in *Repo
return out, nil
}
+func (c *repositoryServiceClient) RepositoryIsEmpty(ctx context.Context, in *RepositoryIsEmptyRequest, opts ...grpc.CallOption) (*RepositoryIsEmptyResponse, error) {
+ out := new(RepositoryIsEmptyResponse)
+ err := grpc.Invoke(ctx, "/gitaly.RepositoryService/RepositoryIsEmpty", in, out, c.cc, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
func (c *repositoryServiceClient) RepackIncremental(ctx context.Context, in *RepackIncrementalRequest, opts ...grpc.CallOption) (*RepackIncrementalResponse, error) {
out := new(RepackIncrementalResponse)
err := grpc.Invoke(ctx, "/gitaly.RepositoryService/RepackIncremental", in, out, c.cc, opts...)
@@ -629,6 +673,7 @@ func (c *repositoryServiceClient) ChangeStorage(ctx context.Context, in *ChangeS
type RepositoryServiceServer interface {
RepositoryExists(context.Context, *RepositoryExistsRequest) (*RepositoryExistsResponse, error)
+ RepositoryIsEmpty(context.Context, *RepositoryIsEmptyRequest) (*RepositoryIsEmptyResponse, error)
RepackIncremental(context.Context, *RepackIncrementalRequest) (*RepackIncrementalResponse, error)
RepackFull(context.Context, *RepackFullRequest) (*RepackFullResponse, error)
GarbageCollect(context.Context, *GarbageCollectRequest) (*GarbageCollectResponse, error)
@@ -663,6 +708,24 @@ func _RepositoryService_RepositoryExists_Handler(srv interface{}, ctx context.Co
return interceptor(ctx, in, info, handler)
}
+func _RepositoryService_RepositoryIsEmpty_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(RepositoryIsEmptyRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(RepositoryServiceServer).RepositoryIsEmpty(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.RepositoryService/RepositoryIsEmpty",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(RepositoryServiceServer).RepositoryIsEmpty(ctx, req.(*RepositoryIsEmptyRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
func _RepositoryService_RepackIncremental_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RepackIncrementalRequest)
if err := dec(in); err != nil {
@@ -855,6 +918,10 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
Handler: _RepositoryService_RepositoryExists_Handler,
},
{
+ MethodName: "RepositoryIsEmpty",
+ Handler: _RepositoryService_RepositoryIsEmpty_Handler,
+ },
+ {
MethodName: "RepackIncremental",
Handler: _RepositoryService_RepackIncremental_Handler,
},
@@ -904,58 +971,61 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor8) }
var fileDescriptor8 = []byte{
- // 840 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x4f, 0x6f, 0xdb, 0x36,
- 0x14, 0xb7, 0x9b, 0xc6, 0x4e, 0x5e, 0xd2, 0xc0, 0xe5, 0x92, 0x58, 0x51, 0xda, 0xd5, 0xe3, 0x2e,
- 0x3e, 0x6c, 0x46, 0xe1, 0x5e, 0x76, 0x75, 0x82, 0xc6, 0x09, 0xba, 0x06, 0x9b, 0x1a, 0xa0, 0x80,
- 0x81, 0x41, 0xa0, 0x65, 0xc6, 0x22, 0x2c, 0x89, 0x1a, 0x49, 0x3b, 0x75, 0xbf, 0xd1, 0x3e, 0xd7,
- 0x8e, 0xfb, 0x12, 0x83, 0x28, 0x59, 0x92, 0x2d, 0xa9, 0x17, 0xa1, 0x37, 0xbd, 0x47, 0xf2, 0xf7,
- 0xfe, 0xff, 0x9e, 0xc0, 0x10, 0x34, 0xe4, 0x92, 0x29, 0x2e, 0xd6, 0xbf, 0x4a, 0x2a, 0x56, 0xcc,
- 0xa1, 0x83, 0x50, 0x70, 0xc5, 0x51, 0x6b, 0xce, 0x14, 0xf1, 0xd6, 0xe6, 0xb1, 0x74, 0x89, 0xa0,
- 0xb3, 0x58, 0x8b, 0x3f, 0x42, 0xd7, 0x4a, 0x5f, 0xbc, 0xff, 0xc2, 0xa4, 0x92, 0x16, 0xfd, 0x7b,
- 0x49, 0xa5, 0x42, 0x43, 0x80, 0x0c, 0xcc, 0x68, 0xf6, 0x9a, 0xfd, 0xa3, 0x21, 0x1a, 0xc4, 0x28,
- 0x83, 0xec, 0x91, 0x95, 0xbb, 0x85, 0x87, 0x60, 0x14, 0xe1, 0x64, 0xc8, 0x03, 0x49, 0xd1, 0x39,
- 0xb4, 0xa8, 0xd6, 0x68, 0xac, 0x03, 0x2b, 0x91, 0xf0, 0xbd, 0x7e, 0x43, 0x9c, 0xc5, 0x5d, 0xe0,
- 0x08, 0xea, 0xd3, 0x40, 0x11, 0xaf, 0x8e, 0x0f, 0x97, 0x70, 0x51, 0x82, 0x17, 0x3b, 0x81, 0x3d,
- 0x78, 0x19, 0x1f, 0xde, 0x2c, 0xbd, 0x3a, 0x56, 0xd0, 0xcf, 0xf0, 0xc2, 0x11, 0x94, 0x28, 0x6a,
- 0x4f, 0x99, 0xf2, 0x49, 0x68, 0x3c, 0xd3, 0x41, 0x1d, 0xc7, 0xca, 0x2b, 0xad, 0xc3, 0xa7, 0x80,
- 0xf2, 0xd6, 0x12, 0x1f, 0x42, 0x38, 0x1b, 0x13, 0x31, 0x25, 0x73, 0x7a, 0xcd, 0x3d, 0x8f, 0x3a,
- 0xea, 0xbb, 0xfb, 0x61, 0xc0, 0xf9, 0xae, 0xc5, 0xc4, 0x97, 0x0f, 0x70, 0x96, 0x01, 0x7f, 0x62,
- 0x5f, 0x69, 0x9d, 0xcc, 0xff, 0x02, 0xe7, 0xbb, 0x60, 0x49, 0xed, 0x11, 0x3c, 0x97, 0xec, 0x2b,
- 0xd5, 0x38, 0x7b, 0x96, 0xfe, 0xc6, 0x0b, 0xb8, 0x18, 0x85, 0xa1, 0xb7, 0x1e, 0x33, 0x45, 0x94,
- 0x12, 0x6c, 0xba, 0x54, 0xb4, 0x4e, 0xf3, 0x21, 0x13, 0x0e, 0x04, 0x5d, 0x31, 0xc9, 0x78, 0xa0,
- 0xb3, 0x70, 0x6c, 0xa5, 0x32, 0x7e, 0x05, 0x66, 0x99, 0xb1, 0x24, 0x0b, 0xff, 0x36, 0x01, 0xdd,
- 0x50, 0xe5, 0xb8, 0x16, 0xf5, 0xb9, 0xaa, 0x93, 0x83, 0xa8, 0xcb, 0x85, 0x06, 0xd1, 0x2e, 0x1c,
- 0x5a, 0x89, 0x84, 0x4e, 0x61, 0xff, 0x91, 0x0b, 0x87, 0x1a, 0x7b, 0xba, 0x3e, 0xb1, 0x80, 0xba,
- 0xd0, 0x0e, 0xb8, 0xad, 0xc8, 0x5c, 0x1a, 0xcf, 0xe3, 0xa1, 0x08, 0xf8, 0x03, 0x99, 0x4b, 0x64,
- 0x40, 0x5b, 0x31, 0x9f, 0xf2, 0xa5, 0x32, 0xf6, 0x7b, 0xcd, 0xfe, 0xbe, 0xb5, 0x11, 0xa3, 0x27,
- 0x52, 0xba, 0xf6, 0x82, 0xae, 0x8d, 0x56, 0x6c, 0x41, 0x4a, 0xf7, 0x03, 0x5d, 0xa3, 0x37, 0x70,
- 0xb4, 0x08, 0xf8, 0x53, 0x60, 0xbb, 0x3c, 0x1a, 0xb2, 0xb6, 0x3e, 0x04, 0xad, 0xba, 0x8d, 0x34,
- 0xf8, 0x0c, 0x7e, 0xd8, 0x0a, 0x32, 0x09, 0xfe, 0x23, 0x74, 0xaf, 0x75, 0xb3, 0xe4, 0x22, 0xaa,
- 0xd1, 0x04, 0x26, 0x18, 0x45, 0xb8, 0xc4, 0xd4, 0x7f, 0x4d, 0x78, 0x39, 0xa6, 0x6a, 0x24, 0x1c,
- 0x97, 0xad, 0x6a, 0xa5, 0xf9, 0x12, 0x0e, 0x1d, 0xee, 0xfb, 0x4c, 0xd9, 0x6c, 0x96, 0x64, 0xfa,
- 0x20, 0x56, 0xdc, 0xcd, 0xa2, 0x1a, 0x84, 0x82, 0x3e, 0xb2, 0x2f, 0x3a, 0xd9, 0x87, 0x56, 0x22,
- 0xa1, 0xdf, 0xa0, 0xf5, 0xc8, 0x85, 0x4f, 0x94, 0x4e, 0xf6, 0xc9, 0xb0, 0xb7, 0x31, 0x52, 0xf0,
- 0x69, 0x70, 0xa3, 0xef, 0x59, 0xc9, 0x7d, 0xfc, 0x0e, 0x5a, 0xb1, 0x06, 0xb5, 0x61, 0x6f, 0x72,
- 0xf7, 0x47, 0xa7, 0x11, 0x7d, 0x3c, 0x8c, 0xac, 0x4e, 0x13, 0x01, 0xb4, 0x1e, 0x46, 0x96, 0x3d,
- 0x9e, 0x74, 0x9e, 0xa1, 0x23, 0x68, 0x47, 0xdf, 0x57, 0x93, 0x61, 0x67, 0x0f, 0xf7, 0x01, 0xe5,
- 0x81, 0xb3, 0x51, 0x98, 0x11, 0x45, 0x74, 0x9c, 0xc7, 0x96, 0xfe, 0x8e, 0x4a, 0x70, 0x4b, 0xe4,
- 0xef, 0xdc, 0x21, 0xde, 0x95, 0x20, 0x81, 0xe3, 0xd6, 0x1a, 0x04, 0xfc, 0x16, 0x8c, 0x22, 0x5c,
- 0x62, 0xfe, 0x14, 0xf6, 0x57, 0xc4, 0x5b, 0xd2, 0x84, 0x84, 0x63, 0x01, 0x2b, 0x38, 0xbd, 0x76,
- 0x49, 0x30, 0xa7, 0x9f, 0x14, 0x17, 0x64, 0x5e, 0xab, 0x34, 0x7d, 0xe8, 0x04, 0xf4, 0xc9, 0x96,
- 0x31, 0x92, 0x1d, 0x10, 0x7f, 0x33, 0x0b, 0x27, 0x01, 0x7d, 0x4a, 0x0c, 0xdc, 0x13, 0x9f, 0xe2,
- 0x2e, 0x9c, 0xed, 0x58, 0x8d, 0x9d, 0x1c, 0xfe, 0xd3, 0xd6, 0x34, 0xbd, 0x61, 0x92, 0x78, 0x8f,
- 0xa1, 0xcf, 0xd0, 0xd9, 0x5d, 0x2e, 0xe8, 0x4d, 0xd1, 0x99, 0xad, 0x2d, 0x66, 0xf6, 0xaa, 0x2f,
- 0x24, 0x4d, 0xd9, 0x40, 0x93, 0xcd, 0x52, 0xc8, 0x6d, 0x0c, 0x94, 0x7f, 0x58, 0xba, 0x9c, 0xcc,
- 0x9f, 0xbe, 0x71, 0x23, 0xc5, 0x7e, 0x0f, 0x90, 0xad, 0x00, 0x74, 0xb1, 0xfd, 0x24, 0xb7, 0x84,
- 0x4c, 0xb3, 0xec, 0x28, 0x85, 0xf9, 0x13, 0x4e, 0xb6, 0x19, 0x1c, 0xbd, 0x4e, 0x9b, 0xb7, 0x6c,
- 0x97, 0x98, 0x3f, 0x56, 0x1d, 0xe7, 0x21, 0xb7, 0xd9, 0x3a, 0x83, 0x2c, 0x5d, 0x09, 0x19, 0x64,
- 0x39, 0xc9, 0xe3, 0x06, 0xfa, 0x0b, 0x50, 0x91, 0x65, 0x51, 0x9a, 0xa7, 0x4a, 0xba, 0x37, 0xf1,
- 0xb7, 0xae, 0xa4, 0xf0, 0xb7, 0x70, 0x94, 0x23, 0x30, 0x94, 0x66, 0xac, 0x48, 0xdd, 0xe6, 0x65,
- 0xe9, 0x59, 0x8a, 0xf4, 0x19, 0x3a, 0xbb, 0x24, 0x95, 0xb5, 0x52, 0x05, 0x1b, 0x66, 0xad, 0x54,
- 0xc9, 0x6f, 0x0d, 0x34, 0x06, 0xc8, 0x66, 0x3e, 0x2b, 0x77, 0x81, 0x60, 0xb2, 0x72, 0x17, 0x29,
- 0x02, 0x37, 0xde, 0x36, 0x23, 0x0f, 0x77, 0x67, 0x38, 0xf3, 0xb0, 0x82, 0x2c, 0x32, 0x0f, 0xab,
- 0xc6, 0x1f, 0x37, 0xd0, 0x3d, 0xbc, 0xd8, 0x1a, 0x3a, 0xf4, 0x2a, 0x0d, 0xab, 0x84, 0x01, 0xcc,
- 0xd7, 0x15, 0xa7, 0x1b, 0xbc, 0x69, 0x4b, 0xff, 0x48, 0xbe, 0xfb, 0x3f, 0x00, 0x00, 0xff, 0xff,
- 0xf3, 0x91, 0x30, 0x11, 0x7a, 0x0a, 0x00, 0x00,
+ // 882 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x5d, 0x4f, 0xe4, 0x36,
+ 0x14, 0x9d, 0x59, 0x96, 0x99, 0xe1, 0xc2, 0xa2, 0x59, 0x97, 0x8f, 0x10, 0x76, 0xbb, 0xd4, 0x7d,
+ 0xe1, 0xa1, 0x45, 0xab, 0x59, 0xa9, 0xea, 0x2b, 0x20, 0x18, 0xd0, 0x76, 0x51, 0x9b, 0x45, 0x5a,
+ 0x09, 0xa9, 0x8a, 0x4c, 0x30, 0x13, 0x8b, 0x24, 0x4e, 0x6d, 0x0f, 0xec, 0xec, 0x7b, 0x7f, 0x69,
+ 0x1f, 0xfb, 0x27, 0xaa, 0x38, 0x9e, 0x7c, 0x87, 0x97, 0xa8, 0x6f, 0xf1, 0xb5, 0x7d, 0xee, 0xf1,
+ 0xb5, 0xef, 0x39, 0x01, 0x4b, 0xd0, 0x98, 0x4b, 0xa6, 0xb8, 0x58, 0xfc, 0x2c, 0xa9, 0x78, 0x64,
+ 0x1e, 0x3d, 0x8a, 0x05, 0x57, 0x1c, 0x0d, 0x66, 0x4c, 0x91, 0x60, 0x61, 0x6f, 0x48, 0x9f, 0x08,
+ 0x7a, 0x97, 0x46, 0xf1, 0x27, 0xd8, 0x75, 0xb2, 0x1d, 0x67, 0x5f, 0x99, 0x54, 0xd2, 0xa1, 0x7f,
+ 0xcd, 0xa9, 0x54, 0x68, 0x02, 0x90, 0x83, 0x59, 0xfd, 0x83, 0xfe, 0xe1, 0xfa, 0x04, 0x1d, 0xa5,
+ 0x28, 0x47, 0xf9, 0x26, 0xa7, 0xb0, 0x0a, 0x4f, 0xc0, 0xaa, 0xc3, 0xc9, 0x98, 0x47, 0x92, 0xa2,
+ 0x1d, 0x18, 0x50, 0x1d, 0xd1, 0x58, 0x23, 0xc7, 0x8c, 0xf0, 0x55, 0x71, 0xcf, 0xa5, 0x3c, 0x0b,
+ 0x63, 0xb5, 0xe8, 0xc2, 0xe1, 0x17, 0xd8, 0x6b, 0xc0, 0x33, 0x24, 0xf6, 0x60, 0xc4, 0xa4, 0x4b,
+ 0x93, 0x98, 0xa1, 0x31, 0x64, 0xe9, 0x12, 0xc3, 0x83, 0x78, 0x0f, 0x97, 0x91, 0x27, 0x68, 0x48,
+ 0x23, 0x45, 0x82, 0x2e, 0x3c, 0xf6, 0x35, 0x8f, 0x2a, 0x5e, 0xca, 0x03, 0x07, 0xf0, 0x3a, 0x9d,
+ 0x3c, 0x9f, 0x07, 0x5d, 0xb2, 0xa0, 0x1f, 0xe1, 0x95, 0x27, 0x28, 0x51, 0xd4, 0xbd, 0x65, 0x2a,
+ 0x24, 0xb1, 0xf5, 0x42, 0x9f, 0x6a, 0x23, 0x0d, 0x9e, 0xe8, 0x18, 0xde, 0x02, 0x54, 0xcc, 0x66,
+ 0x38, 0xc4, 0xb0, 0x3d, 0x25, 0xe2, 0x96, 0xcc, 0xe8, 0x29, 0x0f, 0x02, 0xea, 0xa9, 0xff, 0x9d,
+ 0x87, 0x05, 0x3b, 0xd5, 0x8c, 0x86, 0xcb, 0x47, 0xd8, 0xce, 0x81, 0x3f, 0xb3, 0x6f, 0xb4, 0x4b,
+ 0xe5, 0x7f, 0x82, 0x9d, 0x2a, 0x98, 0xb9, 0x7e, 0x04, 0x2f, 0x25, 0xfb, 0x46, 0x35, 0xce, 0x8a,
+ 0xa3, 0xbf, 0xf1, 0x03, 0xec, 0x1d, 0xc7, 0x71, 0xb0, 0x98, 0x32, 0x45, 0x94, 0x12, 0xec, 0x76,
+ 0xae, 0x68, 0x97, 0x26, 0x40, 0x36, 0x8c, 0x04, 0x7d, 0x64, 0x92, 0xf1, 0x48, 0x57, 0x61, 0xc3,
+ 0xc9, 0xc6, 0xf8, 0x0d, 0xd8, 0x4d, 0xc9, 0x4c, 0x15, 0xfe, 0xe9, 0x03, 0x3a, 0xa7, 0xca, 0xf3,
+ 0x1d, 0x1a, 0x72, 0xd5, 0xa5, 0x06, 0x49, 0xb7, 0x09, 0x0d, 0xa2, 0x29, 0xac, 0x39, 0x66, 0x84,
+ 0xb6, 0x60, 0xf5, 0x9e, 0x0b, 0x8f, 0x5a, 0x2b, 0xfa, 0x7e, 0xd2, 0x01, 0xda, 0x85, 0x61, 0xc4,
+ 0x5d, 0x45, 0x66, 0xd2, 0x7a, 0x99, 0x36, 0x67, 0xc4, 0xaf, 0xc9, 0x4c, 0x22, 0x0b, 0x86, 0x8a,
+ 0x85, 0x94, 0xcf, 0x95, 0xb5, 0x7a, 0xd0, 0x3f, 0x5c, 0x75, 0x96, 0xc3, 0x64, 0x8b, 0x94, 0xbe,
+ 0xfb, 0x40, 0x17, 0xd6, 0x20, 0xcd, 0x20, 0xa5, 0xff, 0x91, 0x2e, 0xd0, 0x3b, 0x58, 0x7f, 0x88,
+ 0xf8, 0x53, 0xe4, 0xfa, 0x3c, 0x69, 0xf6, 0xa1, 0x9e, 0x04, 0x1d, 0xba, 0x48, 0x22, 0x78, 0x1b,
+ 0xbe, 0x2b, 0x1d, 0xd2, 0x1c, 0xfe, 0x13, 0xec, 0x9e, 0xea, 0xc7, 0x52, 0x38, 0x51, 0x87, 0x47,
+ 0x60, 0x83, 0x55, 0x87, 0x33, 0xa9, 0xfe, 0xed, 0xc3, 0xeb, 0x29, 0x55, 0xc7, 0xc2, 0xf3, 0xd9,
+ 0x63, 0xa7, 0x32, 0xef, 0xc3, 0x9a, 0xc7, 0xc3, 0x90, 0x29, 0x97, 0xdd, 0x99, 0x4a, 0x8f, 0xd2,
+ 0xc0, 0xe5, 0x5d, 0x72, 0x07, 0xb1, 0xa0, 0xf7, 0xec, 0xab, 0x2e, 0xf6, 0x9a, 0x63, 0x46, 0xe8,
+ 0x57, 0x18, 0xdc, 0x73, 0x11, 0x12, 0xa5, 0x8b, 0xbd, 0x39, 0x39, 0x58, 0x26, 0xa9, 0x71, 0x3a,
+ 0x3a, 0xd7, 0xeb, 0x1c, 0xb3, 0x1e, 0x7f, 0x80, 0x41, 0x1a, 0x41, 0x43, 0x58, 0xb9, 0xb9, 0xfc,
+ 0x7d, 0xdc, 0x4b, 0x3e, 0xae, 0x8f, 0x9d, 0x71, 0x1f, 0x01, 0x0c, 0xae, 0x8f, 0x1d, 0x77, 0x7a,
+ 0x33, 0x7e, 0x81, 0xd6, 0x61, 0x98, 0x7c, 0x9f, 0xdc, 0x4c, 0xc6, 0x2b, 0xf8, 0x10, 0x50, 0x11,
+ 0x38, 0x6f, 0x85, 0x3b, 0xa2, 0x88, 0x3e, 0xe7, 0x86, 0xa3, 0xbf, 0x93, 0x2b, 0xb8, 0x20, 0xf2,
+ 0x37, 0xee, 0x91, 0xe0, 0x44, 0x90, 0xc8, 0xf3, 0x3b, 0x35, 0x02, 0x7e, 0x0f, 0x56, 0x1d, 0xce,
+ 0xa4, 0xdf, 0x82, 0xd5, 0x47, 0x12, 0xcc, 0xa9, 0x51, 0xe1, 0x74, 0x80, 0x15, 0x6c, 0x9d, 0xfa,
+ 0x24, 0x9a, 0xd1, 0xcf, 0x8a, 0x0b, 0x32, 0xeb, 0x74, 0x35, 0x87, 0x30, 0x8e, 0xe8, 0x93, 0x2b,
+ 0x53, 0x24, 0x37, 0x22, 0xe1, 0xb2, 0x17, 0x36, 0x23, 0xfa, 0x64, 0x12, 0x5c, 0x91, 0x90, 0xe2,
+ 0x5d, 0xd8, 0xae, 0x64, 0x4d, 0x49, 0x4e, 0xfe, 0x1e, 0x69, 0x99, 0x5e, 0x2a, 0x49, 0xea, 0xa7,
+ 0xe8, 0x0b, 0x8c, 0xab, 0x26, 0x87, 0xde, 0xd5, 0xc9, 0x94, 0xdc, 0xd4, 0x3e, 0x68, 0x5f, 0x60,
+ 0x1e, 0x65, 0x0f, 0xdd, 0x14, 0xb3, 0x19, 0xe7, 0x42, 0x0d, 0x1b, 0xcb, 0x26, 0x69, 0xff, 0xf0,
+ 0xcc, 0x8a, 0x0a, 0x76, 0xd9, 0x8d, 0x4a, 0xd8, 0x8d, 0xc6, 0x57, 0xc2, 0x6e, 0xb1, 0xb2, 0x1e,
+ 0x3a, 0x03, 0xc8, 0xed, 0x05, 0xed, 0x95, 0xb7, 0x14, 0x0c, 0xce, 0xb6, 0x9b, 0xa6, 0x32, 0x98,
+ 0x3f, 0x60, 0xb3, 0xec, 0x0e, 0xe8, 0x6d, 0xd6, 0x18, 0x4d, 0x3e, 0x65, 0x7f, 0xdf, 0x36, 0x5d,
+ 0x84, 0x2c, 0x3b, 0x41, 0x0e, 0xd9, 0x68, 0x37, 0x39, 0x64, 0xb3, 0x81, 0xe0, 0x1e, 0xfa, 0x13,
+ 0x50, 0x5d, 0xc1, 0x51, 0x56, 0xa7, 0x56, 0x2b, 0xb1, 0xf1, 0x73, 0x4b, 0x32, 0xf8, 0x0b, 0x58,
+ 0x2f, 0x88, 0x23, 0xca, 0x2a, 0x56, 0xb7, 0x05, 0x7b, 0xbf, 0x71, 0x2e, 0x43, 0xfa, 0x02, 0xe3,
+ 0xaa, 0x00, 0xe6, 0xcf, 0xb4, 0x45, 0x69, 0xf3, 0x67, 0xda, 0xaa, 0x9d, 0x3d, 0x34, 0x05, 0xc8,
+ 0xf5, 0x24, 0xbf, 0xee, 0x9a, 0x78, 0xe5, 0xd7, 0x5d, 0x97, 0x1f, 0xdc, 0x7b, 0xdf, 0x4f, 0x18,
+ 0x56, 0xf5, 0x21, 0x67, 0xd8, 0x22, 0x44, 0x39, 0xc3, 0x36, 0x69, 0xc1, 0x3d, 0x74, 0x05, 0xaf,
+ 0x4a, 0x0d, 0x8d, 0xde, 0x64, 0xc7, 0x6a, 0x50, 0x17, 0xfb, 0x6d, 0xcb, 0xec, 0x12, 0xef, 0x76,
+ 0xa0, 0x7f, 0x96, 0x3f, 0xfc, 0x17, 0x00, 0x00, 0xff, 0xff, 0x93, 0x82, 0xc5, 0x7c, 0x5e, 0x0b,
+ 0x00, 0x00,
}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/wiki.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/wiki.pb.go
index 706589f3f..718a86cbf 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/wiki.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/wiki.pb.go
@@ -500,6 +500,48 @@ func (m *WikiFindFileResponse) GetPath() []byte {
return nil
}
+type WikiGetAllPagesRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+}
+
+func (m *WikiGetAllPagesRequest) Reset() { *m = WikiGetAllPagesRequest{} }
+func (m *WikiGetAllPagesRequest) String() string { return proto.CompactTextString(m) }
+func (*WikiGetAllPagesRequest) ProtoMessage() {}
+func (*WikiGetAllPagesRequest) Descriptor() ([]byte, []int) { return fileDescriptor12, []int{15} }
+
+func (m *WikiGetAllPagesRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+// The WikiGetAllPagesResponse stream is a concatenation of WikiPage streams
+type WikiGetAllPagesResponse struct {
+ Page *WikiPage `protobuf:"bytes,1,opt,name=page" json:"page,omitempty"`
+ // When end_of_page is true it signals a change of page for the next Response message (if any)
+ EndOfPage bool `protobuf:"varint,2,opt,name=end_of_page,json=endOfPage" json:"end_of_page,omitempty"`
+}
+
+func (m *WikiGetAllPagesResponse) Reset() { *m = WikiGetAllPagesResponse{} }
+func (m *WikiGetAllPagesResponse) String() string { return proto.CompactTextString(m) }
+func (*WikiGetAllPagesResponse) ProtoMessage() {}
+func (*WikiGetAllPagesResponse) Descriptor() ([]byte, []int) { return fileDescriptor12, []int{16} }
+
+func (m *WikiGetAllPagesResponse) GetPage() *WikiPage {
+ if m != nil {
+ return m.Page
+ }
+ return nil
+}
+
+func (m *WikiGetAllPagesResponse) GetEndOfPage() bool {
+ if m != nil {
+ return m.EndOfPage
+ }
+ return false
+}
+
func init() {
proto.RegisterType((*WikiCommitDetails)(nil), "gitaly.WikiCommitDetails")
proto.RegisterType((*WikiPageVersion)(nil), "gitaly.WikiPageVersion")
@@ -516,6 +558,8 @@ func init() {
proto.RegisterType((*WikiFindPageResponse)(nil), "gitaly.WikiFindPageResponse")
proto.RegisterType((*WikiFindFileRequest)(nil), "gitaly.WikiFindFileRequest")
proto.RegisterType((*WikiFindFileResponse)(nil), "gitaly.WikiFindFileResponse")
+ proto.RegisterType((*WikiGetAllPagesRequest)(nil), "gitaly.WikiGetAllPagesRequest")
+ proto.RegisterType((*WikiGetAllPagesResponse)(nil), "gitaly.WikiGetAllPagesResponse")
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -536,6 +580,7 @@ type WikiServiceClient interface {
// WikiFindPage returns a stream because the page's raw_data field may be arbitrarily large.
WikiFindPage(ctx context.Context, in *WikiFindPageRequest, opts ...grpc.CallOption) (WikiService_WikiFindPageClient, error)
WikiFindFile(ctx context.Context, in *WikiFindFileRequest, opts ...grpc.CallOption) (WikiService_WikiFindFileClient, error)
+ WikiGetAllPages(ctx context.Context, in *WikiGetAllPagesRequest, opts ...grpc.CallOption) (WikiService_WikiGetAllPagesClient, error)
}
type wikiServiceClient struct {
@@ -719,6 +764,38 @@ func (x *wikiServiceWikiFindFileClient) Recv() (*WikiFindFileResponse, error) {
return m, nil
}
+func (c *wikiServiceClient) WikiGetAllPages(ctx context.Context, in *WikiGetAllPagesRequest, opts ...grpc.CallOption) (WikiService_WikiGetAllPagesClient, error) {
+ stream, err := grpc.NewClientStream(ctx, &_WikiService_serviceDesc.Streams[5], c.cc, "/gitaly.WikiService/WikiGetAllPages", opts...)
+ if err != nil {
+ return nil, err
+ }
+ x := &wikiServiceWikiGetAllPagesClient{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 WikiService_WikiGetAllPagesClient interface {
+ Recv() (*WikiGetAllPagesResponse, error)
+ grpc.ClientStream
+}
+
+type wikiServiceWikiGetAllPagesClient struct {
+ grpc.ClientStream
+}
+
+func (x *wikiServiceWikiGetAllPagesClient) Recv() (*WikiGetAllPagesResponse, error) {
+ m := new(WikiGetAllPagesResponse)
+ if err := x.ClientStream.RecvMsg(m); err != nil {
+ return nil, err
+ }
+ return m, nil
+}
+
// Server API for WikiService service
type WikiServiceServer interface {
@@ -729,6 +806,7 @@ type WikiServiceServer interface {
// WikiFindPage returns a stream because the page's raw_data field may be arbitrarily large.
WikiFindPage(*WikiFindPageRequest, WikiService_WikiFindPageServer) error
WikiFindFile(*WikiFindFileRequest, WikiService_WikiFindFileServer) error
+ WikiGetAllPages(*WikiGetAllPagesRequest, WikiService_WikiGetAllPagesServer) error
}
func RegisterWikiServiceServer(s *grpc.Server, srv WikiServiceServer) {
@@ -868,6 +946,27 @@ func (x *wikiServiceWikiFindFileServer) Send(m *WikiFindFileResponse) error {
return x.ServerStream.SendMsg(m)
}
+func _WikiService_WikiGetAllPages_Handler(srv interface{}, stream grpc.ServerStream) error {
+ m := new(WikiGetAllPagesRequest)
+ if err := stream.RecvMsg(m); err != nil {
+ return err
+ }
+ return srv.(WikiServiceServer).WikiGetAllPages(m, &wikiServiceWikiGetAllPagesServer{stream})
+}
+
+type WikiService_WikiGetAllPagesServer interface {
+ Send(*WikiGetAllPagesResponse) error
+ grpc.ServerStream
+}
+
+type wikiServiceWikiGetAllPagesServer struct {
+ grpc.ServerStream
+}
+
+func (x *wikiServiceWikiGetAllPagesServer) Send(m *WikiGetAllPagesResponse) error {
+ return x.ServerStream.SendMsg(m)
+}
+
var _WikiService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.WikiService",
HandlerType: (*WikiServiceServer)(nil),
@@ -903,6 +1002,11 @@ var _WikiService_serviceDesc = grpc.ServiceDesc{
Handler: _WikiService_WikiFindFile_Handler,
ServerStreams: true,
},
+ {
+ StreamName: "WikiGetAllPages",
+ Handler: _WikiService_WikiGetAllPages_Handler,
+ ServerStreams: true,
+ },
},
Metadata: "wiki.proto",
}
@@ -910,53 +1014,57 @@ var _WikiService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("wiki.proto", fileDescriptor12) }
var fileDescriptor12 = []byte{
- // 762 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcb, 0x6e, 0xd3, 0x4c,
- 0x14, 0xae, 0x9b, 0x34, 0x71, 0x4e, 0x6f, 0x7f, 0xe7, 0xef, 0xdf, 0xdf, 0x4d, 0x4a, 0x55, 0x0d,
- 0x48, 0x94, 0x4d, 0x04, 0xe9, 0x96, 0x45, 0x25, 0x4a, 0xbb, 0x42, 0x2a, 0x6e, 0xa1, 0xcb, 0x68,
- 0x1a, 0x0f, 0xc9, 0xa8, 0x76, 0x6c, 0xc6, 0x93, 0x54, 0x79, 0x04, 0x1e, 0x81, 0x57, 0xe0, 0x71,
- 0x78, 0x0b, 0xb6, 0x3c, 0x01, 0x9a, 0x8b, 0xe3, 0xb1, 0x73, 0x41, 0x50, 0xd8, 0x75, 0xce, 0x39,
- 0xfe, 0xce, 0xf9, 0xbe, 0x73, 0x69, 0x00, 0xee, 0xd9, 0x1d, 0x6b, 0x27, 0x3c, 0x16, 0x31, 0xaa,
- 0xf5, 0x99, 0x20, 0xe1, 0xa4, 0xb9, 0x91, 0x0e, 0x08, 0xa7, 0x81, 0xb6, 0xe2, 0x1b, 0xd8, 0xb9,
- 0x61, 0x77, 0xec, 0x55, 0x1c, 0x45, 0x4c, 0x9c, 0x51, 0x41, 0x58, 0x98, 0x22, 0x04, 0xd5, 0x21,
- 0x89, 0xa8, 0xe7, 0x1c, 0x39, 0xc7, 0x1b, 0xbe, 0xfa, 0x1b, 0xed, 0xc2, 0x1a, 0x8d, 0x08, 0x0b,
- 0xbd, 0x55, 0x65, 0xd4, 0x0f, 0xe4, 0x41, 0x3d, 0xa2, 0x69, 0x4a, 0xfa, 0xd4, 0xab, 0x28, 0x7b,
- 0xf6, 0xc4, 0xd7, 0xb0, 0x2d, 0x81, 0x2f, 0x49, 0x9f, 0xbe, 0xa7, 0x3c, 0x65, 0xf1, 0x10, 0x3d,
- 0x83, 0x5a, 0x4f, 0xe5, 0x51, 0xc0, 0xeb, 0x9d, 0x9d, 0xb6, 0x2e, 0xa9, 0x7d, 0xc1, 0x84, 0x2e,
- 0xc0, 0x37, 0x01, 0x68, 0x0f, 0x6a, 0x1f, 0x62, 0x1e, 0x11, 0xa1, 0xd2, 0x35, 0x7c, 0xf3, 0xc2,
- 0xdf, 0x1c, 0x70, 0x33, 0x58, 0xf4, 0x02, 0xea, 0x63, 0x0d, 0x6d, 0x00, 0xff, 0xcf, 0x00, 0x4b,
- 0x99, 0xfd, 0x2c, 0x6e, 0x11, 0xae, 0x64, 0x27, 0x98, 0x08, 0x33, 0x16, 0xfa, 0x81, 0xf6, 0xc1,
- 0x1d, 0xf1, 0xb0, 0x9b, 0x10, 0x31, 0xf0, 0xaa, 0x2a, 0xbe, 0x3e, 0xe2, 0xe1, 0x25, 0x11, 0x03,
- 0x29, 0x91, 0x32, 0xaf, 0x69, 0x89, 0x12, 0x63, 0x53, 0xb2, 0xd5, 0x2c, 0xd9, 0x0e, 0x01, 0x06,
- 0x2c, 0x15, 0x31, 0x67, 0x3d, 0x12, 0x7a, 0xf5, 0x23, 0xe7, 0xd8, 0xf5, 0x2d, 0x8b, 0x4c, 0xc1,
- 0xc9, 0x7d, 0x37, 0x20, 0x82, 0x78, 0xae, 0x56, 0x90, 0x93, 0xfb, 0x33, 0x22, 0x08, 0x8e, 0xa0,
- 0x29, 0x79, 0x5c, 0x50, 0x61, 0x51, 0x49, 0x7d, 0xfa, 0x71, 0x44, 0x53, 0x81, 0x3a, 0x00, 0x9c,
- 0x26, 0x71, 0xca, 0x44, 0xcc, 0x27, 0x86, 0x3f, 0xca, 0xf8, 0xfb, 0x53, 0x8f, 0x6f, 0x45, 0xa1,
- 0x16, 0x34, 0x12, 0xd2, 0xa7, 0x9a, 0x90, 0xee, 0xa3, 0x2b, 0x0d, 0x92, 0x11, 0xf6, 0xa1, 0x35,
- 0x37, 0x5d, 0x9a, 0xc4, 0xc3, 0x94, 0xa2, 0x13, 0x70, 0x8d, 0x88, 0xa9, 0xe7, 0x1c, 0x55, 0x96,
- 0xa9, 0x3d, 0x0d, 0xc4, 0x5f, 0x1d, 0xd8, 0x95, 0xde, 0x1b, 0xce, 0x04, 0x95, 0x21, 0x0f, 0xa9,
- 0x3e, 0x93, 0x77, 0xd5, 0x92, 0x37, 0xef, 0x67, 0xa5, 0xd0, 0xcf, 0x53, 0xd8, 0xd2, 0x93, 0xd4,
- 0x0d, 0xf4, 0x4c, 0xab, 0xfe, 0xad, 0x77, 0xf6, 0xed, 0x9a, 0x0b, 0x43, 0xef, 0x6f, 0xf6, 0x0a,
- 0x3b, 0xe0, 0x41, 0xbd, 0x17, 0x0f, 0x05, 0x1d, 0x0a, 0xd3, 0xe3, 0xec, 0x89, 0x4f, 0xe1, 0xbf,
- 0x12, 0x27, 0x23, 0xd1, 0x53, 0xd8, 0x0e, 0x46, 0x49, 0xc8, 0x7a, 0x44, 0xd0, 0x2e, 0xe5, 0x3c,
- 0xe6, 0x66, 0x83, 0xb6, 0xa6, 0xe6, 0xd7, 0xd2, 0x8a, 0xbf, 0x3b, 0x1a, 0xe2, 0x5d, 0x12, 0x90,
- 0x87, 0xeb, 0xb2, 0xac, 0xab, 0x0b, 0x06, 0x3b, 0x97, 0xad, 0xfa, 0x13, 0xd9, 0xd6, 0x7e, 0x5f,
- 0xb6, 0x5a, 0x51, 0xb6, 0x36, 0xec, 0x95, 0x39, 0x1b, 0xdd, 0xe4, 0x69, 0xb1, 0xd4, 0xd2, 0x0f,
- 0xfc, 0xc5, 0x88, 0x74, 0x46, 0x43, 0xfa, 0x97, 0x45, 0x9a, 0xa5, 0x5d, 0xf9, 0x35, 0xda, 0xd8,
- 0xd3, 0xe4, 0xec, 0x5a, 0x35, 0x39, 0xfc, 0xd9, 0x81, 0x7f, 0xa5, 0xeb, 0x9c, 0x0d, 0x83, 0x87,
- 0x92, 0x98, 0x36, 0x73, 0xd5, 0x6e, 0x66, 0x13, 0x5c, 0x4e, 0xc7, 0x4c, 0xdd, 0x41, 0xdd, 0xe5,
- 0xe9, 0x1b, 0x1d, 0x40, 0x23, 0x60, 0x9c, 0xf6, 0x54, 0x92, 0xaa, 0x72, 0xe6, 0x06, 0xfc, 0x52,
- 0x6f, 0x67, 0x5e, 0x9a, 0x69, 0xc8, 0x13, 0x79, 0xdc, 0xfa, 0xd4, 0x54, 0xf5, 0x4f, 0x79, 0xcf,
- 0x7d, 0xe5, 0xc5, 0x93, 0x9c, 0xd8, 0x39, 0x0b, 0xff, 0xf8, 0x6a, 0x2f, 0xa1, 0x85, 0xc7, 0x79,
- 0xe1, 0x3a, 0xb5, 0x29, 0x7c, 0xde, 0x3f, 0xae, 0x16, 0x34, 0x22, 0x16, 0xd1, 0xae, 0x98, 0x24,
- 0xd4, 0x5c, 0x7d, 0x57, 0x1a, 0xae, 0x27, 0x09, 0x2d, 0x9c, 0xdf, 0x4a, 0xe1, 0xfc, 0x4e, 0x2f,
- 0x7c, 0x35, 0xbf, 0xf0, 0x9d, 0x4f, 0x55, 0x58, 0x97, 0x89, 0xaf, 0x28, 0x1f, 0xb3, 0x1e, 0x45,
- 0xb7, 0x5a, 0x82, 0xd2, 0xcd, 0x44, 0xd8, 0x56, 0x6c, 0xfe, 0xfd, 0x6e, 0x3e, 0x5e, 0x1a, 0x63,
- 0x86, 0x67, 0xe5, 0xb9, 0x83, 0x2e, 0x61, 0xb3, 0x70, 0x6e, 0xd0, 0x81, 0xfd, 0x65, 0xf9, 0xb2,
- 0x36, 0x1f, 0x2d, 0xf0, 0x66, 0x88, 0xc7, 0x0e, 0xba, 0x82, 0xad, 0xe2, 0x26, 0xa2, 0xc2, 0x47,
- 0x33, 0x57, 0xa9, 0x79, 0xb8, 0xc8, 0x6d, 0x81, 0xbe, 0xd5, 0xa0, 0xf9, 0x06, 0x14, 0x41, 0x67,
- 0xb6, 0xb8, 0x08, 0x3a, 0x67, 0x71, 0x56, 0xd0, 0x1b, 0xd8, 0xb0, 0xc7, 0x13, 0xb5, 0xec, 0x2f,
- 0x4a, 0xfb, 0xd4, 0x3c, 0x98, 0xef, 0xb4, 0x84, 0xb4, 0xe0, 0xe4, 0xd0, 0xcc, 0xc2, 0x59, 0x53,
- 0x3c, 0x0b, 0x67, 0xcf, 0x99, 0x84, 0xbb, 0xad, 0xa9, 0x1f, 0x50, 0x27, 0x3f, 0x02, 0x00, 0x00,
- 0xff, 0xff, 0x31, 0xe9, 0x5a, 0x6d, 0x64, 0x09, 0x00, 0x00,
+ // 825 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcb, 0x72, 0x1b, 0x45,
+ 0x14, 0xcd, 0x48, 0xb2, 0x34, 0xba, 0x72, 0x1c, 0xd2, 0x84, 0x64, 0x32, 0x32, 0xc2, 0xd5, 0x50,
+ 0x85, 0xd9, 0xa8, 0x40, 0xd9, 0xb2, 0x08, 0x85, 0x89, 0x37, 0x50, 0x98, 0x49, 0x88, 0x97, 0x53,
+ 0x6d, 0x4d, 0x5b, 0xea, 0xf2, 0xbc, 0xe8, 0x69, 0xc9, 0xa5, 0x4f, 0xe1, 0x17, 0xf8, 0x1c, 0xfe,
+ 0x80, 0x25, 0x5b, 0xbe, 0x80, 0xea, 0xc7, 0x68, 0x7a, 0x46, 0x0f, 0xca, 0x08, 0x76, 0xea, 0x7b,
+ 0xef, 0x9c, 0xbe, 0xe7, 0xdc, 0x47, 0x0b, 0xe0, 0x9e, 0xdd, 0xb1, 0x71, 0xce, 0x33, 0x91, 0xa1,
+ 0xee, 0x8c, 0x09, 0x12, 0xaf, 0xfc, 0xe3, 0x62, 0x4e, 0x38, 0x8d, 0xb4, 0x15, 0x5f, 0xc3, 0xd3,
+ 0x6b, 0x76, 0xc7, 0xbe, 0xcd, 0x92, 0x84, 0x89, 0x0b, 0x2a, 0x08, 0x8b, 0x0b, 0x84, 0xa0, 0x93,
+ 0x92, 0x84, 0x7a, 0xce, 0x99, 0x73, 0x7e, 0x1c, 0xa8, 0xdf, 0xe8, 0x19, 0x1c, 0xd1, 0x84, 0xb0,
+ 0xd8, 0x6b, 0x29, 0xa3, 0x3e, 0x20, 0x0f, 0x7a, 0x09, 0x2d, 0x0a, 0x32, 0xa3, 0x5e, 0x5b, 0xd9,
+ 0xcb, 0x23, 0x7e, 0x07, 0x4f, 0x24, 0xf0, 0x15, 0x99, 0xd1, 0xf7, 0x94, 0x17, 0x2c, 0x4b, 0xd1,
+ 0x17, 0xd0, 0x9d, 0xaa, 0x7b, 0x14, 0xf0, 0x60, 0xf2, 0x74, 0xac, 0x53, 0x1a, 0x5f, 0x32, 0xa1,
+ 0x13, 0x08, 0x4c, 0x00, 0x7a, 0x0e, 0xdd, 0xdb, 0x8c, 0x27, 0x44, 0xa8, 0xeb, 0xfa, 0x81, 0x39,
+ 0xe1, 0x3f, 0x1d, 0x70, 0x4b, 0x58, 0xf4, 0x15, 0xf4, 0x96, 0x1a, 0xda, 0x00, 0xbe, 0x28, 0x01,
+ 0x1b, 0x37, 0x07, 0x65, 0xdc, 0x2e, 0x5c, 0xc9, 0x4e, 0x30, 0x11, 0x97, 0x2c, 0xf4, 0x01, 0xbd,
+ 0x04, 0x77, 0xc1, 0xe3, 0x30, 0x27, 0x62, 0xee, 0x75, 0x54, 0x7c, 0x6f, 0xc1, 0xe3, 0x2b, 0x22,
+ 0xe6, 0x52, 0x22, 0x65, 0x3e, 0xd2, 0x12, 0xe5, 0xc6, 0xa6, 0x64, 0xeb, 0x5a, 0xb2, 0x8d, 0x00,
+ 0xe6, 0xac, 0x10, 0x19, 0x67, 0x53, 0x12, 0x7b, 0xbd, 0x33, 0xe7, 0xdc, 0x0d, 0x2c, 0x8b, 0xbc,
+ 0x82, 0x93, 0xfb, 0x30, 0x22, 0x82, 0x78, 0xae, 0x56, 0x90, 0x93, 0xfb, 0x0b, 0x22, 0x08, 0x4e,
+ 0xc0, 0x97, 0x3c, 0x2e, 0xa9, 0xb0, 0xa8, 0x14, 0x01, 0xfd, 0x65, 0x41, 0x0b, 0x81, 0x26, 0x00,
+ 0x9c, 0xe6, 0x59, 0xc1, 0x44, 0xc6, 0x57, 0x86, 0x3f, 0x2a, 0xf9, 0x07, 0x6b, 0x4f, 0x60, 0x45,
+ 0xa1, 0x21, 0xf4, 0x73, 0x32, 0xa3, 0x9a, 0x90, 0xae, 0xa3, 0x2b, 0x0d, 0x92, 0x11, 0x0e, 0x60,
+ 0xb8, 0xf5, 0xba, 0x22, 0xcf, 0xd2, 0x82, 0xa2, 0x57, 0xe0, 0x1a, 0x11, 0x0b, 0xcf, 0x39, 0x6b,
+ 0xef, 0x53, 0x7b, 0x1d, 0x88, 0x7f, 0x77, 0xe0, 0x99, 0xf4, 0x5e, 0x73, 0x26, 0xa8, 0x0c, 0x39,
+ 0x24, 0xfb, 0x52, 0xde, 0x96, 0x25, 0x6f, 0x55, 0xcf, 0x76, 0xad, 0x9e, 0xaf, 0xe1, 0x44, 0x77,
+ 0x52, 0x18, 0xe9, 0x9e, 0x56, 0xf5, 0x1b, 0x4c, 0x5e, 0xda, 0x39, 0xd7, 0x9a, 0x3e, 0x78, 0x3c,
+ 0xad, 0xcd, 0x80, 0x07, 0xbd, 0x69, 0x96, 0x0a, 0x9a, 0x0a, 0x53, 0xe3, 0xf2, 0x88, 0x5f, 0xc3,
+ 0x47, 0x0d, 0x4e, 0x46, 0xa2, 0xcf, 0xe1, 0x49, 0xb4, 0xc8, 0x63, 0x36, 0x25, 0x82, 0x86, 0x94,
+ 0xf3, 0x8c, 0x9b, 0x09, 0x3a, 0x59, 0x9b, 0xbf, 0x93, 0x56, 0xfc, 0x97, 0xa3, 0x21, 0x7e, 0xce,
+ 0x23, 0x72, 0xb8, 0x2e, 0xfb, 0xaa, 0xba, 0xa3, 0xb1, 0x2b, 0xd9, 0x3a, 0xff, 0x20, 0xdb, 0xd1,
+ 0xbf, 0x97, 0xad, 0x5b, 0x97, 0x6d, 0x0c, 0xcf, 0x9b, 0x9c, 0x8d, 0x6e, 0x72, 0xb5, 0x58, 0x6a,
+ 0xe9, 0x03, 0xfe, 0xcd, 0x88, 0x74, 0x41, 0x63, 0xfa, 0x3f, 0x8b, 0xb4, 0x49, 0xbb, 0xfd, 0x30,
+ 0xda, 0xd8, 0xd3, 0xe4, 0xec, 0x5c, 0x35, 0x39, 0xfc, 0xab, 0x03, 0x1f, 0x4a, 0xd7, 0x1b, 0x96,
+ 0x46, 0x87, 0x92, 0x58, 0x17, 0xb3, 0x65, 0x17, 0xd3, 0x07, 0x97, 0xd3, 0x25, 0x53, 0x7b, 0x50,
+ 0x57, 0x79, 0x7d, 0x46, 0xa7, 0xd0, 0x8f, 0x18, 0xa7, 0x53, 0x75, 0x49, 0x47, 0x39, 0x2b, 0x03,
+ 0xfe, 0x5a, 0x4f, 0x67, 0x95, 0x9a, 0x29, 0xc8, 0x67, 0x72, 0xb9, 0xcd, 0xa8, 0xc9, 0xea, 0x83,
+ 0xe6, 0x9c, 0x07, 0xca, 0x8b, 0x57, 0x15, 0xb1, 0x37, 0x2c, 0xfe, 0xcf, 0x47, 0x7b, 0x0f, 0x2d,
+ 0xbc, 0xac, 0x12, 0xd7, 0x57, 0x9b, 0xc4, 0xb7, 0x3d, 0x5c, 0x43, 0xe8, 0x27, 0x2c, 0xa1, 0xa1,
+ 0x58, 0xe5, 0xd4, 0x6c, 0x7d, 0x57, 0x1a, 0xde, 0xad, 0x72, 0x5a, 0x5b, 0xbf, 0xed, 0xda, 0xfa,
+ 0x5d, 0x6f, 0xf8, 0x4e, 0xb5, 0xe1, 0xf1, 0xf7, 0xba, 0xcc, 0x97, 0x54, 0x7c, 0x13, 0xc7, 0x52,
+ 0x8a, 0x43, 0xd6, 0x31, 0x0e, 0xe1, 0xc5, 0x06, 0xda, 0x43, 0x2a, 0x80, 0x46, 0x30, 0xa0, 0x69,
+ 0x14, 0x66, 0xb7, 0xa1, 0x0a, 0x6e, 0xa9, 0xd7, 0xa5, 0x4f, 0xd3, 0xe8, 0xc7, 0x5b, 0x19, 0x35,
+ 0xf9, 0xa3, 0x03, 0x03, 0xf9, 0xc9, 0x5b, 0xca, 0x97, 0x6c, 0x4a, 0xd1, 0x8d, 0xae, 0x58, 0x63,
+ 0xc5, 0x23, 0x6c, 0xc3, 0x6f, 0x7f, 0x6e, 0xfc, 0x4f, 0xf7, 0xc6, 0x98, 0x5e, 0x7f, 0xf4, 0xa5,
+ 0x83, 0xae, 0xe0, 0x71, 0x6d, 0x3b, 0xa2, 0x53, 0xfb, 0xcb, 0xe6, 0x43, 0xe0, 0x7f, 0xbc, 0xc3,
+ 0x5b, 0x22, 0x9e, 0x3b, 0xe8, 0x2d, 0x9c, 0xd4, 0x17, 0x07, 0xaa, 0x7d, 0xb4, 0xb1, 0x44, 0xfd,
+ 0xd1, 0x2e, 0xb7, 0x05, 0xfa, 0x93, 0x06, 0xad, 0x06, 0xb6, 0x0e, 0xba, 0xb1, 0x74, 0xea, 0xa0,
+ 0x5b, 0xe6, 0xfc, 0x11, 0xfa, 0x01, 0x8e, 0xed, 0x69, 0x42, 0x43, 0xfb, 0x8b, 0xc6, 0xf8, 0xfb,
+ 0xa7, 0xdb, 0x9d, 0x96, 0x90, 0x16, 0x9c, 0xec, 0xf1, 0x4d, 0x38, 0x6b, 0xe8, 0x36, 0xe1, 0xec,
+ 0xb1, 0x50, 0x70, 0xef, 0xf5, 0xff, 0x31, 0xab, 0xd9, 0xd0, 0xa8, 0x51, 0xd3, 0x46, 0x4f, 0xfb,
+ 0x9f, 0xec, 0xf4, 0x57, 0xb8, 0x37, 0x5d, 0xf5, 0x3f, 0xf2, 0xd5, 0xdf, 0x01, 0x00, 0x00, 0xff,
+ 0xff, 0x25, 0x07, 0xbf, 0x54, 0x6b, 0x0a, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 21fcabdff..dc2da1be3 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -201,12 +201,12 @@
"revisionTime": "2017-01-30T11:31:45Z"
},
{
- "checksumSHA1": "ZFmD4kW9rV0ONj7l1vXN8jXX2tM=",
+ "checksumSHA1": "ha7L0wzpaAM3EGdX3mdKtMAdkgk=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
- "revision": "53f20d77ad19fbec45eab078038d560dbf8fcec0",
- "revisionTime": "2017-10-30T12:09:21Z",
- "version": "v0.51.0",
- "versionExact": "v0.51.0"
+ "revision": "ddccb254195d2e30dff4031bfcd12e6dbe450ae8",
+ "revisionTime": "2017-11-06T13:53:12Z",
+ "version": "v0.52.0",
+ "versionExact": "v0.52.0"
},
{
"checksumSHA1": "nqWNlnMmVpt628zzvyo6Yv2CX5Q=",