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:
authorJohn Cai <jcai@gitlab.com>2019-03-29 02:54:47 +0300
committerJohn Cai <jcai@gitlab.com>2019-03-29 03:02:53 +0300
commitf0e4f982de2c84f6b0c35015553b1f026421e6b5 (patch)
tree6ac60137d6a835a2734aaeccdc4b90ad62d1a082
parent35c7b104140fcc6e0549b886dc40bc8c7cc5d3f5 (diff)
add DisconnectAlternates rpcjc-disconnect-alternates
-rw-r--r--changelogs/unreleased/jc-disconnect-alternates.yml5
-rw-r--r--internal/service/repository/disconnect_alternates.go42
-rw-r--r--internal/service/repository/disconnect_alternates_test.go59
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go615
-rw-r--r--vendor/vendor.json10
5 files changed, 476 insertions, 255 deletions
diff --git a/changelogs/unreleased/jc-disconnect-alternates.yml b/changelogs/unreleased/jc-disconnect-alternates.yml
new file mode 100644
index 000000000..6c373ef7a
--- /dev/null
+++ b/changelogs/unreleased/jc-disconnect-alternates.yml
@@ -0,0 +1,5 @@
+---
+title: Remove Add DisconnectAlternates rpc
+merge_request: 1162
+author:
+type: added
diff --git a/internal/service/repository/disconnect_alternates.go b/internal/service/repository/disconnect_alternates.go
new file mode 100644
index 000000000..493a71447
--- /dev/null
+++ b/internal/service/repository/disconnect_alternates.go
@@ -0,0 +1,42 @@
+package repository
+
+import (
+ "context"
+ "errors"
+ "fmt"
+ "os"
+
+ "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
+ "gitlab.com/gitlab-org/gitaly/internal/git"
+ "gitlab.com/gitlab-org/gitaly/internal/git/repository"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+)
+
+func (s *server) DisconnectAlternates(ctx context.Context, req *gitalypb.DisconnectAlternatesRequest) (*gitalypb.DisconnectAlternatesResponse, error) {
+ if req.GetRepository() == nil {
+ return nil, helper.ErrInvalidArgument(errors.New("empty repository"))
+ }
+
+ if err := disconnectAlternates(req.GetRepository()); err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ return &gitalypb.DisconnectAlternatesResponse{}, nil
+}
+
+func disconnectAlternates(repository repository.GitRepo) error {
+ altPath, err := git.AlternatesPath(repository)
+ if err != nil {
+ return err
+ }
+
+ _, err = os.Stat(altPath)
+ if err != nil {
+ if os.IsNotExist(err) {
+ return nil
+ }
+ return fmt.Errorf("error when reading alternates file: %v", err)
+ }
+
+ return os.Remove(altPath)
+}
diff --git a/internal/service/repository/disconnect_alternates_test.go b/internal/service/repository/disconnect_alternates_test.go
new file mode 100644
index 000000000..e5183059f
--- /dev/null
+++ b/internal/service/repository/disconnect_alternates_test.go
@@ -0,0 +1,59 @@
+package repository
+
+import (
+ "os"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+ "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
+ "gitlab.com/gitlab-org/gitaly/internal/git"
+ "gitlab.com/gitlab-org/gitaly/internal/git/objectpool"
+ "gitlab.com/gitlab-org/gitaly/internal/git/repository"
+ "gitlab.com/gitlab-org/gitaly/internal/testhelper"
+)
+
+func doesAlternatesExist(t *testing.T, repo repository.GitRepo) bool {
+ altPath, err := git.AlternatesPath(repo)
+ require.NoError(t, err)
+
+ _, err = os.Stat(altPath)
+ if err != nil {
+ if os.IsNotExist(err) {
+ return false
+ }
+ require.NoError(t, err)
+ }
+ return true
+}
+
+func TestDisconnectAlternates(t *testing.T) {
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ server, serverSocketPath := runRepoServer(t)
+ defer server.Stop()
+
+ client, _ := newRepositoryClient(t, serverSocketPath)
+
+ pool, _ := objectpool.NewTestObjectPool(t)
+ defer pool.Remove(ctx)
+
+ require.NoError(t, pool.Create(ctx, testRepo))
+ require.NoError(t, pool.Link(ctx, testRepo))
+
+ require.True(t, doesAlternatesExist(t, testRepo))
+
+ _, err := client.DisconnectAlternates(ctx, &gitalypb.DisconnectAlternatesRequest{Repository: testRepo})
+ require.NoError(t, err)
+
+ assert.False(t, doesAlternatesExist(t, testRepo))
+
+ _, err = client.DisconnectAlternates(ctx, &gitalypb.DisconnectAlternatesRequest{Repository: testRepo})
+ require.NoError(t, err)
+
+ assert.False(t, doesAlternatesExist(t, testRepo))
+}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go
index 7c29c7813..9b6fed457 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go
@@ -49,7 +49,7 @@ func (x GetArchiveRequest_Format) String() string {
return proto.EnumName(GetArchiveRequest_Format_name, int32(x))
}
func (GetArchiveRequest_Format) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{18, 0}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{18, 0}
}
type GetRawChangesResponse_RawChange_Operation int32
@@ -87,7 +87,7 @@ func (x GetRawChangesResponse_RawChange_Operation) String() string {
return proto.EnumName(GetRawChangesResponse_RawChange_Operation_name, int32(x))
}
func (GetRawChangesResponse_RawChange_Operation) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{63, 0, 0}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{63, 0, 0}
}
type RepositoryExistsRequest struct {
@@ -101,7 +101,7 @@ func (m *RepositoryExistsRequest) Reset() { *m = RepositoryExistsRequest
func (m *RepositoryExistsRequest) String() string { return proto.CompactTextString(m) }
func (*RepositoryExistsRequest) ProtoMessage() {}
func (*RepositoryExistsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{0}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{0}
}
func (m *RepositoryExistsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositoryExistsRequest.Unmarshal(m, b)
@@ -139,7 +139,7 @@ func (m *RepositoryExistsResponse) Reset() { *m = RepositoryExistsRespon
func (m *RepositoryExistsResponse) String() string { return proto.CompactTextString(m) }
func (*RepositoryExistsResponse) ProtoMessage() {}
func (*RepositoryExistsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{1}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{1}
}
func (m *RepositoryExistsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositoryExistsResponse.Unmarshal(m, b)
@@ -177,7 +177,7 @@ func (m *RepackIncrementalRequest) Reset() { *m = RepackIncrementalReque
func (m *RepackIncrementalRequest) String() string { return proto.CompactTextString(m) }
func (*RepackIncrementalRequest) ProtoMessage() {}
func (*RepackIncrementalRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{2}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{2}
}
func (m *RepackIncrementalRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackIncrementalRequest.Unmarshal(m, b)
@@ -214,7 +214,7 @@ func (m *RepackIncrementalResponse) Reset() { *m = RepackIncrementalResp
func (m *RepackIncrementalResponse) String() string { return proto.CompactTextString(m) }
func (*RepackIncrementalResponse) ProtoMessage() {}
func (*RepackIncrementalResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{3}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{3}
}
func (m *RepackIncrementalResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackIncrementalResponse.Unmarshal(m, b)
@@ -246,7 +246,7 @@ func (m *RepackFullRequest) Reset() { *m = RepackFullRequest{} }
func (m *RepackFullRequest) String() string { return proto.CompactTextString(m) }
func (*RepackFullRequest) ProtoMessage() {}
func (*RepackFullRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{4}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{4}
}
func (m *RepackFullRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackFullRequest.Unmarshal(m, b)
@@ -290,7 +290,7 @@ func (m *RepackFullResponse) Reset() { *m = RepackFullResponse{} }
func (m *RepackFullResponse) String() string { return proto.CompactTextString(m) }
func (*RepackFullResponse) ProtoMessage() {}
func (*RepackFullResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{5}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{5}
}
func (m *RepackFullResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackFullResponse.Unmarshal(m, b)
@@ -322,7 +322,7 @@ func (m *GarbageCollectRequest) Reset() { *m = GarbageCollectRequest{} }
func (m *GarbageCollectRequest) String() string { return proto.CompactTextString(m) }
func (*GarbageCollectRequest) ProtoMessage() {}
func (*GarbageCollectRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{6}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{6}
}
func (m *GarbageCollectRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GarbageCollectRequest.Unmarshal(m, b)
@@ -366,7 +366,7 @@ func (m *GarbageCollectResponse) Reset() { *m = GarbageCollectResponse{}
func (m *GarbageCollectResponse) String() string { return proto.CompactTextString(m) }
func (*GarbageCollectResponse) ProtoMessage() {}
func (*GarbageCollectResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{7}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{7}
}
func (m *GarbageCollectResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GarbageCollectResponse.Unmarshal(m, b)
@@ -397,7 +397,7 @@ func (m *CleanupRequest) Reset() { *m = CleanupRequest{} }
func (m *CleanupRequest) String() string { return proto.CompactTextString(m) }
func (*CleanupRequest) ProtoMessage() {}
func (*CleanupRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{8}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{8}
}
func (m *CleanupRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CleanupRequest.Unmarshal(m, b)
@@ -434,7 +434,7 @@ func (m *CleanupResponse) Reset() { *m = CleanupResponse{} }
func (m *CleanupResponse) String() string { return proto.CompactTextString(m) }
func (*CleanupResponse) ProtoMessage() {}
func (*CleanupResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{9}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{9}
}
func (m *CleanupResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CleanupResponse.Unmarshal(m, b)
@@ -465,7 +465,7 @@ func (m *RepositorySizeRequest) Reset() { *m = RepositorySizeRequest{} }
func (m *RepositorySizeRequest) String() string { return proto.CompactTextString(m) }
func (*RepositorySizeRequest) ProtoMessage() {}
func (*RepositorySizeRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{10}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{10}
}
func (m *RepositorySizeRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositorySizeRequest.Unmarshal(m, b)
@@ -504,7 +504,7 @@ func (m *RepositorySizeResponse) Reset() { *m = RepositorySizeResponse{}
func (m *RepositorySizeResponse) String() string { return proto.CompactTextString(m) }
func (*RepositorySizeResponse) ProtoMessage() {}
func (*RepositorySizeResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{11}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{11}
}
func (m *RepositorySizeResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositorySizeResponse.Unmarshal(m, b)
@@ -543,7 +543,7 @@ func (m *ApplyGitattributesRequest) Reset() { *m = ApplyGitattributesReq
func (m *ApplyGitattributesRequest) String() string { return proto.CompactTextString(m) }
func (*ApplyGitattributesRequest) ProtoMessage() {}
func (*ApplyGitattributesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{12}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{12}
}
func (m *ApplyGitattributesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ApplyGitattributesRequest.Unmarshal(m, b)
@@ -587,7 +587,7 @@ func (m *ApplyGitattributesResponse) Reset() { *m = ApplyGitattributesRe
func (m *ApplyGitattributesResponse) String() string { return proto.CompactTextString(m) }
func (*ApplyGitattributesResponse) ProtoMessage() {}
func (*ApplyGitattributesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{13}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{13}
}
func (m *ApplyGitattributesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ApplyGitattributesResponse.Unmarshal(m, b)
@@ -625,7 +625,7 @@ func (m *FetchRemoteRequest) Reset() { *m = FetchRemoteRequest{} }
func (m *FetchRemoteRequest) String() string { return proto.CompactTextString(m) }
func (*FetchRemoteRequest) ProtoMessage() {}
func (*FetchRemoteRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{14}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{14}
}
func (m *FetchRemoteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchRemoteRequest.Unmarshal(m, b)
@@ -711,7 +711,7 @@ func (m *FetchRemoteResponse) Reset() { *m = FetchRemoteResponse{} }
func (m *FetchRemoteResponse) String() string { return proto.CompactTextString(m) }
func (*FetchRemoteResponse) ProtoMessage() {}
func (*FetchRemoteResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{15}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{15}
}
func (m *FetchRemoteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchRemoteResponse.Unmarshal(m, b)
@@ -742,7 +742,7 @@ func (m *CreateRepositoryRequest) Reset() { *m = CreateRepositoryRequest
func (m *CreateRepositoryRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryRequest) ProtoMessage() {}
func (*CreateRepositoryRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{16}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{16}
}
func (m *CreateRepositoryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryRequest.Unmarshal(m, b)
@@ -779,7 +779,7 @@ func (m *CreateRepositoryResponse) Reset() { *m = CreateRepositoryRespon
func (m *CreateRepositoryResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryResponse) ProtoMessage() {}
func (*CreateRepositoryResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{17}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{17}
}
func (m *CreateRepositoryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryResponse.Unmarshal(m, b)
@@ -804,6 +804,7 @@ type GetArchiveRequest struct {
CommitId string `protobuf:"bytes,2,opt,name=commit_id,json=commitId,proto3" json:"commit_id,omitempty"`
Prefix string `protobuf:"bytes,3,opt,name=prefix,proto3" json:"prefix,omitempty"`
Format GetArchiveRequest_Format `protobuf:"varint,4,opt,name=format,proto3,enum=gitaly.GetArchiveRequest_Format" json:"format,omitempty"`
+ Path []byte `protobuf:"bytes,5,opt,name=path,proto3" json:"path,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -813,7 +814,7 @@ func (m *GetArchiveRequest) Reset() { *m = GetArchiveRequest{} }
func (m *GetArchiveRequest) String() string { return proto.CompactTextString(m) }
func (*GetArchiveRequest) ProtoMessage() {}
func (*GetArchiveRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{18}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{18}
}
func (m *GetArchiveRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetArchiveRequest.Unmarshal(m, b)
@@ -861,6 +862,13 @@ func (m *GetArchiveRequest) GetFormat() GetArchiveRequest_Format {
return GetArchiveRequest_ZIP
}
+func (m *GetArchiveRequest) GetPath() []byte {
+ if m != nil {
+ return m.Path
+ }
+ return nil
+}
+
type GetArchiveResponse struct {
Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@@ -872,7 +880,7 @@ func (m *GetArchiveResponse) Reset() { *m = GetArchiveResponse{} }
func (m *GetArchiveResponse) String() string { return proto.CompactTextString(m) }
func (*GetArchiveResponse) ProtoMessage() {}
func (*GetArchiveResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{19}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{19}
}
func (m *GetArchiveResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetArchiveResponse.Unmarshal(m, b)
@@ -910,7 +918,7 @@ func (m *HasLocalBranchesRequest) Reset() { *m = HasLocalBranchesRequest
func (m *HasLocalBranchesRequest) String() string { return proto.CompactTextString(m) }
func (*HasLocalBranchesRequest) ProtoMessage() {}
func (*HasLocalBranchesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{20}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{20}
}
func (m *HasLocalBranchesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HasLocalBranchesRequest.Unmarshal(m, b)
@@ -948,7 +956,7 @@ func (m *HasLocalBranchesResponse) Reset() { *m = HasLocalBranchesRespon
func (m *HasLocalBranchesResponse) String() string { return proto.CompactTextString(m) }
func (*HasLocalBranchesResponse) ProtoMessage() {}
func (*HasLocalBranchesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{21}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{21}
}
func (m *HasLocalBranchesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HasLocalBranchesResponse.Unmarshal(m, b)
@@ -989,7 +997,7 @@ func (m *FetchSourceBranchRequest) Reset() { *m = FetchSourceBranchReque
func (m *FetchSourceBranchRequest) String() string { return proto.CompactTextString(m) }
func (*FetchSourceBranchRequest) ProtoMessage() {}
func (*FetchSourceBranchRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{22}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{22}
}
func (m *FetchSourceBranchRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchSourceBranchRequest.Unmarshal(m, b)
@@ -1048,7 +1056,7 @@ func (m *FetchSourceBranchResponse) Reset() { *m = FetchSourceBranchResp
func (m *FetchSourceBranchResponse) String() string { return proto.CompactTextString(m) }
func (*FetchSourceBranchResponse) ProtoMessage() {}
func (*FetchSourceBranchResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{23}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{23}
}
func (m *FetchSourceBranchResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchSourceBranchResponse.Unmarshal(m, b)
@@ -1086,7 +1094,7 @@ func (m *FsckRequest) Reset() { *m = FsckRequest{} }
func (m *FsckRequest) String() string { return proto.CompactTextString(m) }
func (*FsckRequest) ProtoMessage() {}
func (*FsckRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{24}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{24}
}
func (m *FsckRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FsckRequest.Unmarshal(m, b)
@@ -1124,7 +1132,7 @@ func (m *FsckResponse) Reset() { *m = FsckResponse{} }
func (m *FsckResponse) String() string { return proto.CompactTextString(m) }
func (*FsckResponse) ProtoMessage() {}
func (*FsckResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{25}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{25}
}
func (m *FsckResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FsckResponse.Unmarshal(m, b)
@@ -1166,7 +1174,7 @@ func (m *WriteRefRequest) Reset() { *m = WriteRefRequest{} }
func (m *WriteRefRequest) String() string { return proto.CompactTextString(m) }
func (*WriteRefRequest) ProtoMessage() {}
func (*WriteRefRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{26}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{26}
}
func (m *WriteRefRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteRefRequest.Unmarshal(m, b)
@@ -1231,7 +1239,7 @@ func (m *WriteRefResponse) Reset() { *m = WriteRefResponse{} }
func (m *WriteRefResponse) String() string { return proto.CompactTextString(m) }
func (*WriteRefResponse) ProtoMessage() {}
func (*WriteRefResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{27}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{27}
}
func (m *WriteRefResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteRefResponse.Unmarshal(m, b)
@@ -1266,7 +1274,7 @@ func (m *FindMergeBaseRequest) Reset() { *m = FindMergeBaseRequest{} }
func (m *FindMergeBaseRequest) String() string { return proto.CompactTextString(m) }
func (*FindMergeBaseRequest) ProtoMessage() {}
func (*FindMergeBaseRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{28}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{28}
}
func (m *FindMergeBaseRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindMergeBaseRequest.Unmarshal(m, b)
@@ -1311,7 +1319,7 @@ func (m *FindMergeBaseResponse) Reset() { *m = FindMergeBaseResponse{} }
func (m *FindMergeBaseResponse) String() string { return proto.CompactTextString(m) }
func (*FindMergeBaseResponse) ProtoMessage() {}
func (*FindMergeBaseResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{29}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{29}
}
func (m *FindMergeBaseResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindMergeBaseResponse.Unmarshal(m, b)
@@ -1350,7 +1358,7 @@ func (m *CreateForkRequest) Reset() { *m = CreateForkRequest{} }
func (m *CreateForkRequest) String() string { return proto.CompactTextString(m) }
func (*CreateForkRequest) ProtoMessage() {}
func (*CreateForkRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{30}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{30}
}
func (m *CreateForkRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateForkRequest.Unmarshal(m, b)
@@ -1394,7 +1402,7 @@ func (m *CreateForkResponse) Reset() { *m = CreateForkResponse{} }
func (m *CreateForkResponse) String() string { return proto.CompactTextString(m) }
func (*CreateForkResponse) ProtoMessage() {}
func (*CreateForkResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{31}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{31}
}
func (m *CreateForkResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateForkResponse.Unmarshal(m, b)
@@ -1426,7 +1434,7 @@ func (m *IsRebaseInProgressRequest) Reset() { *m = IsRebaseInProgressReq
func (m *IsRebaseInProgressRequest) String() string { return proto.CompactTextString(m) }
func (*IsRebaseInProgressRequest) ProtoMessage() {}
func (*IsRebaseInProgressRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{32}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{32}
}
func (m *IsRebaseInProgressRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsRebaseInProgressRequest.Unmarshal(m, b)
@@ -1471,7 +1479,7 @@ func (m *IsRebaseInProgressResponse) Reset() { *m = IsRebaseInProgressRe
func (m *IsRebaseInProgressResponse) String() string { return proto.CompactTextString(m) }
func (*IsRebaseInProgressResponse) ProtoMessage() {}
func (*IsRebaseInProgressResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{33}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{33}
}
func (m *IsRebaseInProgressResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsRebaseInProgressResponse.Unmarshal(m, b)
@@ -1510,7 +1518,7 @@ func (m *IsSquashInProgressRequest) Reset() { *m = IsSquashInProgressReq
func (m *IsSquashInProgressRequest) String() string { return proto.CompactTextString(m) }
func (*IsSquashInProgressRequest) ProtoMessage() {}
func (*IsSquashInProgressRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{34}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{34}
}
func (m *IsSquashInProgressRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsSquashInProgressRequest.Unmarshal(m, b)
@@ -1555,7 +1563,7 @@ func (m *IsSquashInProgressResponse) Reset() { *m = IsSquashInProgressRe
func (m *IsSquashInProgressResponse) String() string { return proto.CompactTextString(m) }
func (*IsSquashInProgressResponse) ProtoMessage() {}
func (*IsSquashInProgressResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{35}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{35}
}
func (m *IsSquashInProgressResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsSquashInProgressResponse.Unmarshal(m, b)
@@ -1594,7 +1602,7 @@ func (m *CreateRepositoryFromURLRequest) Reset() { *m = CreateRepository
func (m *CreateRepositoryFromURLRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromURLRequest) ProtoMessage() {}
func (*CreateRepositoryFromURLRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{36}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{36}
}
func (m *CreateRepositoryFromURLRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromURLRequest.Unmarshal(m, b)
@@ -1638,7 +1646,7 @@ func (m *CreateRepositoryFromURLResponse) Reset() { *m = CreateRepositor
func (m *CreateRepositoryFromURLResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromURLResponse) ProtoMessage() {}
func (*CreateRepositoryFromURLResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{37}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{37}
}
func (m *CreateRepositoryFromURLResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromURLResponse.Unmarshal(m, b)
@@ -1669,7 +1677,7 @@ func (m *CreateBundleRequest) Reset() { *m = CreateBundleRequest{} }
func (m *CreateBundleRequest) String() string { return proto.CompactTextString(m) }
func (*CreateBundleRequest) ProtoMessage() {}
func (*CreateBundleRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{38}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{38}
}
func (m *CreateBundleRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateBundleRequest.Unmarshal(m, b)
@@ -1707,7 +1715,7 @@ func (m *CreateBundleResponse) Reset() { *m = CreateBundleResponse{} }
func (m *CreateBundleResponse) String() string { return proto.CompactTextString(m) }
func (*CreateBundleResponse) ProtoMessage() {}
func (*CreateBundleResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{39}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{39}
}
func (m *CreateBundleResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateBundleResponse.Unmarshal(m, b)
@@ -1746,7 +1754,7 @@ func (m *WriteConfigRequest) Reset() { *m = WriteConfigRequest{} }
func (m *WriteConfigRequest) String() string { return proto.CompactTextString(m) }
func (*WriteConfigRequest) ProtoMessage() {}
func (*WriteConfigRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{40}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{40}
}
func (m *WriteConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteConfigRequest.Unmarshal(m, b)
@@ -1791,7 +1799,7 @@ func (m *WriteConfigResponse) Reset() { *m = WriteConfigResponse{} }
func (m *WriteConfigResponse) String() string { return proto.CompactTextString(m) }
func (*WriteConfigResponse) ProtoMessage() {}
func (*WriteConfigResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{41}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{41}
}
func (m *WriteConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteConfigResponse.Unmarshal(m, b)
@@ -1830,7 +1838,7 @@ func (m *SetConfigRequest) Reset() { *m = SetConfigRequest{} }
func (m *SetConfigRequest) String() string { return proto.CompactTextString(m) }
func (*SetConfigRequest) ProtoMessage() {}
func (*SetConfigRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{42}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{42}
}
func (m *SetConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigRequest.Unmarshal(m, b)
@@ -1880,7 +1888,7 @@ func (m *SetConfigRequest_Entry) Reset() { *m = SetConfigRequest_Entry{}
func (m *SetConfigRequest_Entry) String() string { return proto.CompactTextString(m) }
func (*SetConfigRequest_Entry) ProtoMessage() {}
func (*SetConfigRequest_Entry) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{42, 0}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{42, 0}
}
func (m *SetConfigRequest_Entry) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigRequest_Entry.Unmarshal(m, b)
@@ -2050,7 +2058,7 @@ func (m *SetConfigResponse) Reset() { *m = SetConfigResponse{} }
func (m *SetConfigResponse) String() string { return proto.CompactTextString(m) }
func (*SetConfigResponse) ProtoMessage() {}
func (*SetConfigResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{43}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{43}
}
func (m *SetConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigResponse.Unmarshal(m, b)
@@ -2082,7 +2090,7 @@ func (m *DeleteConfigRequest) Reset() { *m = DeleteConfigRequest{} }
func (m *DeleteConfigRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteConfigRequest) ProtoMessage() {}
func (*DeleteConfigRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{44}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{44}
}
func (m *DeleteConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteConfigRequest.Unmarshal(m, b)
@@ -2126,7 +2134,7 @@ func (m *DeleteConfigResponse) Reset() { *m = DeleteConfigResponse{} }
func (m *DeleteConfigResponse) String() string { return proto.CompactTextString(m) }
func (*DeleteConfigResponse) ProtoMessage() {}
func (*DeleteConfigResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{45}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{45}
}
func (m *DeleteConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteConfigResponse.Unmarshal(m, b)
@@ -2158,7 +2166,7 @@ func (m *RestoreCustomHooksRequest) Reset() { *m = RestoreCustomHooksReq
func (m *RestoreCustomHooksRequest) String() string { return proto.CompactTextString(m) }
func (*RestoreCustomHooksRequest) ProtoMessage() {}
func (*RestoreCustomHooksRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{46}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{46}
}
func (m *RestoreCustomHooksRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RestoreCustomHooksRequest.Unmarshal(m, b)
@@ -2202,7 +2210,7 @@ func (m *RestoreCustomHooksResponse) Reset() { *m = RestoreCustomHooksRe
func (m *RestoreCustomHooksResponse) String() string { return proto.CompactTextString(m) }
func (*RestoreCustomHooksResponse) ProtoMessage() {}
func (*RestoreCustomHooksResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{47}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{47}
}
func (m *RestoreCustomHooksResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RestoreCustomHooksResponse.Unmarshal(m, b)
@@ -2233,7 +2241,7 @@ func (m *BackupCustomHooksRequest) Reset() { *m = BackupCustomHooksReque
func (m *BackupCustomHooksRequest) String() string { return proto.CompactTextString(m) }
func (*BackupCustomHooksRequest) ProtoMessage() {}
func (*BackupCustomHooksRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{48}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{48}
}
func (m *BackupCustomHooksRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BackupCustomHooksRequest.Unmarshal(m, b)
@@ -2271,7 +2279,7 @@ func (m *BackupCustomHooksResponse) Reset() { *m = BackupCustomHooksResp
func (m *BackupCustomHooksResponse) String() string { return proto.CompactTextString(m) }
func (*BackupCustomHooksResponse) ProtoMessage() {}
func (*BackupCustomHooksResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{49}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{49}
}
func (m *BackupCustomHooksResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BackupCustomHooksResponse.Unmarshal(m, b)
@@ -2311,7 +2319,7 @@ func (m *CreateRepositoryFromBundleRequest) Reset() { *m = CreateReposit
func (m *CreateRepositoryFromBundleRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromBundleRequest) ProtoMessage() {}
func (*CreateRepositoryFromBundleRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{50}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{50}
}
func (m *CreateRepositoryFromBundleRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromBundleRequest.Unmarshal(m, b)
@@ -2355,7 +2363,7 @@ func (m *CreateRepositoryFromBundleResponse) Reset() { *m = CreateReposi
func (m *CreateRepositoryFromBundleResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromBundleResponse) ProtoMessage() {}
func (*CreateRepositoryFromBundleResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{51}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{51}
}
func (m *CreateRepositoryFromBundleResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromBundleResponse.Unmarshal(m, b)
@@ -2386,7 +2394,7 @@ func (m *FindLicenseRequest) Reset() { *m = FindLicenseRequest{} }
func (m *FindLicenseRequest) String() string { return proto.CompactTextString(m) }
func (*FindLicenseRequest) ProtoMessage() {}
func (*FindLicenseRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{52}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{52}
}
func (m *FindLicenseRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindLicenseRequest.Unmarshal(m, b)
@@ -2424,7 +2432,7 @@ func (m *FindLicenseResponse) Reset() { *m = FindLicenseResponse{} }
func (m *FindLicenseResponse) String() string { return proto.CompactTextString(m) }
func (*FindLicenseResponse) ProtoMessage() {}
func (*FindLicenseResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{53}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{53}
}
func (m *FindLicenseResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindLicenseResponse.Unmarshal(m, b)
@@ -2462,7 +2470,7 @@ func (m *GetInfoAttributesRequest) Reset() { *m = GetInfoAttributesReque
func (m *GetInfoAttributesRequest) String() string { return proto.CompactTextString(m) }
func (*GetInfoAttributesRequest) ProtoMessage() {}
func (*GetInfoAttributesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{54}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{54}
}
func (m *GetInfoAttributesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetInfoAttributesRequest.Unmarshal(m, b)
@@ -2500,7 +2508,7 @@ func (m *GetInfoAttributesResponse) Reset() { *m = GetInfoAttributesResp
func (m *GetInfoAttributesResponse) String() string { return proto.CompactTextString(m) }
func (*GetInfoAttributesResponse) ProtoMessage() {}
func (*GetInfoAttributesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{55}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{55}
}
func (m *GetInfoAttributesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetInfoAttributesResponse.Unmarshal(m, b)
@@ -2538,7 +2546,7 @@ func (m *CalculateChecksumRequest) Reset() { *m = CalculateChecksumReque
func (m *CalculateChecksumRequest) String() string { return proto.CompactTextString(m) }
func (*CalculateChecksumRequest) ProtoMessage() {}
func (*CalculateChecksumRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{56}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{56}
}
func (m *CalculateChecksumRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CalculateChecksumRequest.Unmarshal(m, b)
@@ -2576,7 +2584,7 @@ func (m *CalculateChecksumResponse) Reset() { *m = CalculateChecksumResp
func (m *CalculateChecksumResponse) String() string { return proto.CompactTextString(m) }
func (*CalculateChecksumResponse) ProtoMessage() {}
func (*CalculateChecksumResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{57}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{57}
}
func (m *CalculateChecksumResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CalculateChecksumResponse.Unmarshal(m, b)
@@ -2614,7 +2622,7 @@ func (m *GetSnapshotRequest) Reset() { *m = GetSnapshotRequest{} }
func (m *GetSnapshotRequest) String() string { return proto.CompactTextString(m) }
func (*GetSnapshotRequest) ProtoMessage() {}
func (*GetSnapshotRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{58}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{58}
}
func (m *GetSnapshotRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetSnapshotRequest.Unmarshal(m, b)
@@ -2652,7 +2660,7 @@ func (m *GetSnapshotResponse) Reset() { *m = GetSnapshotResponse{} }
func (m *GetSnapshotResponse) String() string { return proto.CompactTextString(m) }
func (*GetSnapshotResponse) ProtoMessage() {}
func (*GetSnapshotResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{59}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{59}
}
func (m *GetSnapshotResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetSnapshotResponse.Unmarshal(m, b)
@@ -2692,7 +2700,7 @@ func (m *CreateRepositoryFromSnapshotRequest) Reset() { *m = CreateRepos
func (m *CreateRepositoryFromSnapshotRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromSnapshotRequest) ProtoMessage() {}
func (*CreateRepositoryFromSnapshotRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{60}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{60}
}
func (m *CreateRepositoryFromSnapshotRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromSnapshotRequest.Unmarshal(m, b)
@@ -2743,7 +2751,7 @@ func (m *CreateRepositoryFromSnapshotResponse) Reset() { *m = CreateRepo
func (m *CreateRepositoryFromSnapshotResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromSnapshotResponse) ProtoMessage() {}
func (*CreateRepositoryFromSnapshotResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{61}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{61}
}
func (m *CreateRepositoryFromSnapshotResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromSnapshotResponse.Unmarshal(m, b)
@@ -2776,7 +2784,7 @@ func (m *GetRawChangesRequest) Reset() { *m = GetRawChangesRequest{} }
func (m *GetRawChangesRequest) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesRequest) ProtoMessage() {}
func (*GetRawChangesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{62}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{62}
}
func (m *GetRawChangesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesRequest.Unmarshal(m, b)
@@ -2828,7 +2836,7 @@ func (m *GetRawChangesResponse) Reset() { *m = GetRawChangesResponse{} }
func (m *GetRawChangesResponse) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesResponse) ProtoMessage() {}
func (*GetRawChangesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{63}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{63}
}
func (m *GetRawChangesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesResponse.Unmarshal(m, b)
@@ -2873,7 +2881,7 @@ func (m *GetRawChangesResponse_RawChange) Reset() { *m = GetRawChangesRe
func (m *GetRawChangesResponse_RawChange) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesResponse_RawChange) ProtoMessage() {}
func (*GetRawChangesResponse_RawChange) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{63, 0}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{63, 0}
}
func (m *GetRawChangesResponse_RawChange) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesResponse_RawChange.Unmarshal(m, b)
@@ -2962,7 +2970,7 @@ func (m *SearchFilesByNameRequest) Reset() { *m = SearchFilesByNameReque
func (m *SearchFilesByNameRequest) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByNameRequest) ProtoMessage() {}
func (*SearchFilesByNameRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{64}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{64}
}
func (m *SearchFilesByNameRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByNameRequest.Unmarshal(m, b)
@@ -3014,7 +3022,7 @@ func (m *SearchFilesByNameResponse) Reset() { *m = SearchFilesByNameResp
func (m *SearchFilesByNameResponse) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByNameResponse) ProtoMessage() {}
func (*SearchFilesByNameResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{65}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{65}
}
func (m *SearchFilesByNameResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByNameResponse.Unmarshal(m, b)
@@ -3055,7 +3063,7 @@ func (m *SearchFilesByContentRequest) Reset() { *m = SearchFilesByConten
func (m *SearchFilesByContentRequest) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByContentRequest) ProtoMessage() {}
func (*SearchFilesByContentRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{66}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{66}
}
func (m *SearchFilesByContentRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByContentRequest.Unmarshal(m, b)
@@ -3116,7 +3124,7 @@ func (m *SearchFilesByContentResponse) Reset() { *m = SearchFilesByConte
func (m *SearchFilesByContentResponse) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByContentResponse) ProtoMessage() {}
func (*SearchFilesByContentResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{67}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{67}
}
func (m *SearchFilesByContentResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByContentResponse.Unmarshal(m, b)
@@ -3170,7 +3178,7 @@ func (m *PreFetchRequest) Reset() { *m = PreFetchRequest{} }
func (m *PreFetchRequest) String() string { return proto.CompactTextString(m) }
func (*PreFetchRequest) ProtoMessage() {}
func (*PreFetchRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{68}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{68}
}
func (m *PreFetchRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PreFetchRequest.Unmarshal(m, b)
@@ -3221,7 +3229,7 @@ func (m *PreFetchResponse) Reset() { *m = PreFetchResponse{} }
func (m *PreFetchResponse) String() string { return proto.CompactTextString(m) }
func (*PreFetchResponse) ProtoMessage() {}
func (*PreFetchResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{69}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{69}
}
func (m *PreFetchResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PreFetchResponse.Unmarshal(m, b)
@@ -3254,7 +3262,7 @@ func (m *Remote) Reset() { *m = Remote{} }
func (m *Remote) String() string { return proto.CompactTextString(m) }
func (*Remote) ProtoMessage() {}
func (*Remote) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{70}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{70}
}
func (m *Remote) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Remote.Unmarshal(m, b)
@@ -3308,7 +3316,7 @@ func (m *FetchHTTPRemoteRequest) Reset() { *m = FetchHTTPRemoteRequest{}
func (m *FetchHTTPRemoteRequest) String() string { return proto.CompactTextString(m) }
func (*FetchHTTPRemoteRequest) ProtoMessage() {}
func (*FetchHTTPRemoteRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{71}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{71}
}
func (m *FetchHTTPRemoteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchHTTPRemoteRequest.Unmarshal(m, b)
@@ -3359,7 +3367,7 @@ func (m *FetchHTTPRemoteResponse) Reset() { *m = FetchHTTPRemoteResponse
func (m *FetchHTTPRemoteResponse) String() string { return proto.CompactTextString(m) }
func (*FetchHTTPRemoteResponse) ProtoMessage() {}
func (*FetchHTTPRemoteResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_31fa3b04395213d1, []int{72}
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{72}
}
func (m *FetchHTTPRemoteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchHTTPRemoteResponse.Unmarshal(m, b)
@@ -3379,6 +3387,74 @@ func (m *FetchHTTPRemoteResponse) XXX_DiscardUnknown() {
var xxx_messageInfo_FetchHTTPRemoteResponse proto.InternalMessageInfo
+type DisconnectAlternatesRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *DisconnectAlternatesRequest) Reset() { *m = DisconnectAlternatesRequest{} }
+func (m *DisconnectAlternatesRequest) String() string { return proto.CompactTextString(m) }
+func (*DisconnectAlternatesRequest) ProtoMessage() {}
+func (*DisconnectAlternatesRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{73}
+}
+func (m *DisconnectAlternatesRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_DisconnectAlternatesRequest.Unmarshal(m, b)
+}
+func (m *DisconnectAlternatesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_DisconnectAlternatesRequest.Marshal(b, m, deterministic)
+}
+func (dst *DisconnectAlternatesRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_DisconnectAlternatesRequest.Merge(dst, src)
+}
+func (m *DisconnectAlternatesRequest) XXX_Size() int {
+ return xxx_messageInfo_DisconnectAlternatesRequest.Size(m)
+}
+func (m *DisconnectAlternatesRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_DisconnectAlternatesRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_DisconnectAlternatesRequest proto.InternalMessageInfo
+
+func (m *DisconnectAlternatesRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+type DisconnectAlternatesResponse struct {
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *DisconnectAlternatesResponse) Reset() { *m = DisconnectAlternatesResponse{} }
+func (m *DisconnectAlternatesResponse) String() string { return proto.CompactTextString(m) }
+func (*DisconnectAlternatesResponse) ProtoMessage() {}
+func (*DisconnectAlternatesResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_repository_service_45a38d9645d45314, []int{74}
+}
+func (m *DisconnectAlternatesResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_DisconnectAlternatesResponse.Unmarshal(m, b)
+}
+func (m *DisconnectAlternatesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_DisconnectAlternatesResponse.Marshal(b, m, deterministic)
+}
+func (dst *DisconnectAlternatesResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_DisconnectAlternatesResponse.Merge(dst, src)
+}
+func (m *DisconnectAlternatesResponse) XXX_Size() int {
+ return xxx_messageInfo_DisconnectAlternatesResponse.Size(m)
+}
+func (m *DisconnectAlternatesResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_DisconnectAlternatesResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_DisconnectAlternatesResponse proto.InternalMessageInfo
+
func init() {
proto.RegisterType((*RepositoryExistsRequest)(nil), "gitaly.RepositoryExistsRequest")
proto.RegisterType((*RepositoryExistsResponse)(nil), "gitaly.RepositoryExistsResponse")
@@ -3455,6 +3531,8 @@ func init() {
proto.RegisterType((*Remote)(nil), "gitaly.Remote")
proto.RegisterType((*FetchHTTPRemoteRequest)(nil), "gitaly.FetchHTTPRemoteRequest")
proto.RegisterType((*FetchHTTPRemoteResponse)(nil), "gitaly.FetchHTTPRemoteResponse")
+ proto.RegisterType((*DisconnectAlternatesRequest)(nil), "gitaly.DisconnectAlternatesRequest")
+ proto.RegisterType((*DisconnectAlternatesResponse)(nil), "gitaly.DisconnectAlternatesResponse")
proto.RegisterEnum("gitaly.GetArchiveRequest_Format", GetArchiveRequest_Format_name, GetArchiveRequest_Format_value)
proto.RegisterEnum("gitaly.GetRawChangesResponse_RawChange_Operation", GetRawChangesResponse_RawChange_Operation_name, GetRawChangesResponse_RawChange_Operation_value)
}
@@ -3507,6 +3585,7 @@ type RepositoryServiceClient interface {
BackupCustomHooks(ctx context.Context, in *BackupCustomHooksRequest, opts ...grpc.CallOption) (RepositoryService_BackupCustomHooksClient, error)
PreFetch(ctx context.Context, in *PreFetchRequest, opts ...grpc.CallOption) (*PreFetchResponse, error)
FetchHTTPRemote(ctx context.Context, in *FetchHTTPRemoteRequest, opts ...grpc.CallOption) (*FetchHTTPRemoteResponse, error)
+ DisconnectAlternates(ctx context.Context, in *DisconnectAlternatesRequest, opts ...grpc.CallOption) (*DisconnectAlternatesResponse, error)
}
type repositoryServiceClient struct {
@@ -4075,6 +4154,15 @@ func (c *repositoryServiceClient) FetchHTTPRemote(ctx context.Context, in *Fetch
return out, nil
}
+func (c *repositoryServiceClient) DisconnectAlternates(ctx context.Context, in *DisconnectAlternatesRequest, opts ...grpc.CallOption) (*DisconnectAlternatesResponse, error) {
+ out := new(DisconnectAlternatesResponse)
+ err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/DisconnectAlternates", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// RepositoryServiceServer is the server API for RepositoryService service.
type RepositoryServiceServer interface {
RepositoryExists(context.Context, *RepositoryExistsRequest) (*RepositoryExistsResponse, error)
@@ -4113,6 +4201,7 @@ type RepositoryServiceServer interface {
BackupCustomHooks(*BackupCustomHooksRequest, RepositoryService_BackupCustomHooksServer) error
PreFetch(context.Context, *PreFetchRequest) (*PreFetchResponse, error)
FetchHTTPRemote(context.Context, *FetchHTTPRemoteRequest) (*FetchHTTPRemoteResponse, error)
+ DisconnectAlternates(context.Context, *DisconnectAlternatesRequest) (*DisconnectAlternatesResponse, error)
}
func RegisterRepositoryServiceServer(s *grpc.Server, srv RepositoryServiceServer) {
@@ -4807,6 +4896,24 @@ func _RepositoryService_FetchHTTPRemote_Handler(srv interface{}, ctx context.Con
return interceptor(ctx, in, info, handler)
}
+func _RepositoryService_DisconnectAlternates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(DisconnectAlternatesRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(RepositoryServiceServer).DisconnectAlternates(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.RepositoryService/DisconnectAlternates",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(RepositoryServiceServer).DisconnectAlternates(ctx, req.(*DisconnectAlternatesRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _RepositoryService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.RepositoryService",
HandlerType: (*RepositoryServiceServer)(nil),
@@ -4915,6 +5022,10 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
MethodName: "FetchHTTPRemote",
Handler: _RepositoryService_FetchHTTPRemote_Handler,
},
+ {
+ MethodName: "DisconnectAlternates",
+ Handler: _RepositoryService_DisconnectAlternates_Handler,
+ },
},
Streams: []grpc.StreamDesc{
{
@@ -4972,177 +5083,181 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
}
func init() {
- proto.RegisterFile("repository-service.proto", fileDescriptor_repository_service_31fa3b04395213d1)
-}
-
-var fileDescriptor_repository_service_31fa3b04395213d1 = []byte{
- // 2688 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xdd, 0x72, 0xdb, 0xb8,
- 0xf5, 0x97, 0xfc, 0x25, 0xe9, 0x48, 0x49, 0x64, 0xd8, 0x89, 0x25, 0xe6, 0xc3, 0x09, 0x93, 0xd9,
- 0xcd, 0x7e, 0x39, 0xbb, 0xce, 0xc5, 0x7f, 0x67, 0xff, 0xed, 0x64, 0xfc, 0x6d, 0xef, 0x26, 0xb6,
- 0x97, 0x76, 0x36, 0xd3, 0xcc, 0x76, 0x38, 0x34, 0x05, 0x59, 0x5c, 0x53, 0x84, 0x16, 0x84, 0xe2,
- 0x75, 0x3a, 0xd3, 0xbb, 0xbd, 0xe8, 0x4c, 0x2f, 0xf6, 0xaa, 0x1f, 0xef, 0xd0, 0x27, 0xe8, 0x53,
- 0xf4, 0xbe, 0x4f, 0xd0, 0xdb, 0xf6, 0x05, 0x3a, 0x00, 0x48, 0x80, 0x14, 0x49, 0x35, 0x1d, 0x69,
- 0xb6, 0x77, 0xc4, 0x39, 0xc0, 0xc1, 0xc1, 0x39, 0x07, 0x07, 0x38, 0x3f, 0x10, 0x5a, 0x14, 0x0f,
- 0x48, 0xe8, 0x31, 0x42, 0xaf, 0x3e, 0x09, 0x31, 0x7d, 0xe3, 0xb9, 0x78, 0x6d, 0x40, 0x09, 0x23,
- 0x68, 0xe1, 0xdc, 0x63, 0x8e, 0x7f, 0x65, 0x34, 0xc2, 0x9e, 0x43, 0x71, 0x47, 0x52, 0xcd, 0x97,
- 0xb0, 0x62, 0xa9, 0x11, 0x3b, 0x3f, 0x78, 0x21, 0x0b, 0x2d, 0xfc, 0xfd, 0x10, 0x87, 0x0c, 0xad,
- 0x03, 0x68, 0x61, 0xad, 0xf2, 0xfd, 0xf2, 0xe3, 0xfa, 0x3a, 0x5a, 0x93, 0x52, 0xd6, 0xf4, 0x20,
- 0x2b, 0xd1, 0xeb, 0x8b, 0x85, 0x7f, 0xfe, 0xf1, 0xf1, 0x4c, 0x75, 0xc6, 0x5c, 0x87, 0x56, 0x56,
- 0x6c, 0x38, 0x20, 0x41, 0x88, 0xd1, 0x2d, 0x58, 0xc0, 0x82, 0x22, 0x64, 0x56, 0xad, 0xa8, 0x65,
- 0x7e, 0x23, 0xc6, 0x38, 0xee, 0xc5, 0x41, 0xe0, 0x52, 0xdc, 0xc7, 0x01, 0x73, 0xfc, 0xc9, 0x75,
- 0x29, 0x9b, 0xb7, 0xa1, 0x9d, 0x23, 0x57, 0x2a, 0x63, 0x32, 0x58, 0x94, 0xcc, 0xdd, 0xa1, 0x3f,
- 0xc9, 0x6c, 0xe8, 0x21, 0x5c, 0x73, 0x29, 0x76, 0x18, 0xb6, 0xcf, 0x3c, 0xd6, 0x77, 0x06, 0xad,
- 0x19, 0xb1, 0xb8, 0x86, 0x24, 0x6e, 0x0a, 0x9a, 0x52, 0x69, 0x19, 0x50, 0x72, 0xd6, 0x48, 0x97,
- 0x1f, 0xe0, 0xe6, 0x9e, 0x43, 0xcf, 0x9c, 0x73, 0xbc, 0x45, 0x7c, 0x1f, 0xbb, 0xec, 0x67, 0xd3,
- 0xa7, 0x05, 0xb7, 0x46, 0x67, 0x8e, 0x74, 0x7a, 0x0e, 0xd7, 0xb7, 0x7c, 0xec, 0x04, 0xc3, 0xc1,
- 0x34, 0x5c, 0xb1, 0x08, 0x37, 0x94, 0xb4, 0x68, 0x82, 0x13, 0xb8, 0xa9, 0x07, 0x9d, 0x78, 0x6f,
- 0xf1, 0x34, 0xc2, 0xef, 0x63, 0xb8, 0x35, 0x2a, 0x34, 0x0a, 0x3e, 0x04, 0x73, 0xa1, 0xf7, 0x16,
- 0x0b, 0x79, 0xb3, 0x96, 0xf8, 0x36, 0x43, 0x68, 0x6f, 0x0c, 0x06, 0xfe, 0xd5, 0x9e, 0xc7, 0x1c,
- 0xc6, 0xa8, 0x77, 0x36, 0x64, 0x78, 0x92, 0x5d, 0x80, 0x0c, 0xa8, 0x52, 0xfc, 0xc6, 0x0b, 0x3d,
- 0x12, 0x08, 0xb3, 0x37, 0x2c, 0xd5, 0x56, 0xa6, 0xb8, 0x03, 0x46, 0xde, 0xa4, 0x91, 0x55, 0x7e,
- 0x3f, 0x03, 0x68, 0x17, 0x33, 0xb7, 0x67, 0xe1, 0x3e, 0x61, 0x93, 0xd8, 0x84, 0x6f, 0x37, 0x2a,
- 0x84, 0x08, 0x55, 0x6a, 0x56, 0xd4, 0x42, 0xcb, 0x30, 0xdf, 0x25, 0xd4, 0xc5, 0xad, 0x59, 0x11,
- 0x18, 0xb2, 0x81, 0x56, 0xa0, 0x12, 0x10, 0x9b, 0x39, 0xe7, 0x61, 0x6b, 0x4e, 0xee, 0xce, 0x80,
- 0x9c, 0x3a, 0xe7, 0x21, 0x6a, 0x41, 0x85, 0x79, 0x7d, 0x4c, 0x86, 0xac, 0x35, 0x7f, 0xbf, 0xfc,
- 0x78, 0xde, 0x8a, 0x9b, 0x7c, 0x48, 0x18, 0xf6, 0xec, 0x0b, 0x7c, 0xd5, 0x5a, 0x90, 0x33, 0x84,
- 0x61, 0xef, 0x2b, 0x7c, 0x85, 0x56, 0xa1, 0x7e, 0x11, 0x90, 0xcb, 0xc0, 0xee, 0x11, 0xbe, 0xdb,
- 0x2b, 0x82, 0x09, 0x82, 0xb4, 0xcf, 0x29, 0xa8, 0x0d, 0xd5, 0x80, 0xd8, 0x03, 0x3a, 0x0c, 0x70,
- 0xab, 0x26, 0x66, 0xab, 0x04, 0xe4, 0x98, 0x37, 0x63, 0x33, 0x7d, 0x39, 0x57, 0xad, 0x36, 0x6b,
- 0xe6, 0x4d, 0x58, 0x4a, 0x59, 0x23, 0xb2, 0xd2, 0x4b, 0x58, 0xd9, 0x12, 0xe1, 0x9c, 0x58, 0xfa,
- 0x14, 0xa2, 0xd4, 0x80, 0x56, 0x56, 0x6c, 0x34, 0xe5, 0xbf, 0xca, 0xb0, 0xb8, 0x87, 0xd9, 0x06,
- 0x75, 0x7b, 0xde, 0x9b, 0x89, 0xfc, 0x72, 0x1b, 0x6a, 0x2e, 0xe9, 0xf7, 0x3d, 0x66, 0x7b, 0x9d,
- 0xc8, 0x35, 0x55, 0x49, 0x38, 0xe8, 0x70, 0xa7, 0x0d, 0x28, 0xee, 0x7a, 0x3f, 0x08, 0xef, 0xd4,
- 0xac, 0xa8, 0x85, 0x3e, 0x87, 0x85, 0x2e, 0xa1, 0x7d, 0x87, 0x09, 0xef, 0x5c, 0x5f, 0xbf, 0x1f,
- 0x4f, 0x92, 0xd1, 0x69, 0x6d, 0x57, 0xf4, 0xb3, 0xa2, 0xfe, 0xe6, 0x53, 0x58, 0x90, 0x14, 0x54,
- 0x81, 0xd9, 0xd7, 0x07, 0xc7, 0xcd, 0x12, 0xff, 0x38, 0xdd, 0xb0, 0x9a, 0x65, 0x04, 0xb0, 0x70,
- 0xba, 0x61, 0xd9, 0x7b, 0xaf, 0x9b, 0x33, 0xa8, 0x0e, 0x15, 0xfe, 0xbd, 0xf9, 0x7a, 0xbd, 0x39,
- 0xab, 0xf6, 0xd3, 0x63, 0x40, 0xc9, 0x09, 0xf4, 0x5e, 0xea, 0x38, 0xcc, 0x11, 0xeb, 0x6d, 0x58,
- 0xe2, 0x9b, 0xbb, 0x64, 0xdf, 0x09, 0x9f, 0x13, 0xd7, 0xf1, 0x37, 0xa9, 0x13, 0xb8, 0x3d, 0x3c,
- 0x95, 0xf3, 0xe4, 0x53, 0x68, 0x65, 0xc5, 0x46, 0x6a, 0x2c, 0xc3, 0xfc, 0x1b, 0xc7, 0x1f, 0xe2,
- 0xe8, 0x38, 0x91, 0x0d, 0xf3, 0xef, 0x65, 0x68, 0x89, 0x98, 0x39, 0x21, 0x43, 0xea, 0x62, 0x39,
- 0x6a, 0x12, 0x7f, 0x3d, 0x83, 0xc5, 0x50, 0x88, 0xb2, 0x13, 0x43, 0x67, 0x0a, 0x87, 0x36, 0x65,
- 0x67, 0x2b, 0x95, 0x91, 0x23, 0x01, 0x67, 0x42, 0x19, 0xe1, 0xda, 0x86, 0xd5, 0x08, 0x13, 0x0a,
- 0xa2, 0xbb, 0x00, 0xcc, 0xa1, 0xe7, 0x98, 0xd9, 0x14, 0x77, 0x85, 0x93, 0x1b, 0x56, 0x4d, 0x52,
- 0x2c, 0xdc, 0x55, 0x21, 0xfa, 0x14, 0xda, 0x39, 0x8b, 0xd3, 0x07, 0x2c, 0xc5, 0xe1, 0xd0, 0x67,
- 0xf1, 0x01, 0x2b, 0x5b, 0xe6, 0x01, 0xd4, 0x77, 0x43, 0xf7, 0x62, 0x1a, 0x5b, 0xe4, 0x11, 0x34,
- 0xa4, 0x28, 0xed, 0x03, 0x4c, 0x29, 0xa1, 0x51, 0x2c, 0xc8, 0x86, 0xf9, 0xd7, 0x32, 0xdc, 0x78,
- 0x45, 0x3d, 0xbe, 0x91, 0xba, 0x93, 0x98, 0xbe, 0x09, 0xb3, 0xdc, 0x1a, 0x32, 0x95, 0xf2, 0xcf,
- 0x54, 0x86, 0x9d, 0x4d, 0x67, 0x58, 0xf4, 0x00, 0x1a, 0xc4, 0xef, 0xd8, 0x8a, 0x2f, 0x8d, 0x58,
- 0x27, 0x7e, 0xc7, 0x8a, 0xbb, 0xa8, 0xdc, 0x37, 0x9f, 0xc8, 0x7d, 0x89, 0x9c, 0xb3, 0xd0, 0xac,
- 0x98, 0x2d, 0x68, 0x6a, 0xdd, 0xe5, 0x32, 0xbf, 0x9c, 0xab, 0x96, 0x9b, 0x33, 0xe6, 0x00, 0x96,
- 0x77, 0xbd, 0xa0, 0xf3, 0x02, 0xd3, 0x73, 0xbc, 0xe9, 0x84, 0x13, 0x65, 0x81, 0x3b, 0x50, 0x8b,
- 0x15, 0x0d, 0x5b, 0x33, 0xf7, 0x67, 0xb9, 0xbb, 0x15, 0x41, 0x85, 0xff, 0x47, 0x70, 0x73, 0x64,
- 0x46, 0xbd, 0x05, 0xcf, 0x9c, 0x50, 0x86, 0x7e, 0xcd, 0x12, 0xdf, 0xe6, 0x4f, 0x65, 0x58, 0x94,
- 0xf9, 0x6b, 0x97, 0xd0, 0x8b, 0xff, 0x65, 0xc8, 0x27, 0xef, 0x3b, 0x49, 0x8d, 0xd4, 0xdd, 0xab,
- 0x7d, 0x10, 0x5a, 0x98, 0x2b, 0x7d, 0x10, 0x1c, 0x53, 0x72, 0x4e, 0x71, 0x18, 0x4e, 0x98, 0x52,
- 0xa9, 0x10, 0x97, 0x48, 0xa9, 0x92, 0x70, 0xd0, 0x51, 0xb6, 0xfc, 0x25, 0x18, 0x79, 0xb3, 0x46,
- 0x06, 0x5d, 0x85, 0xba, 0x17, 0xd8, 0x83, 0x88, 0x1c, 0x6d, 0x20, 0xf0, 0x54, 0x47, 0xa9, 0xf4,
- 0xc9, 0xf7, 0x43, 0x27, 0xec, 0x4d, 0x4d, 0xe9, 0x50, 0x88, 0x4b, 0x28, 0x2d, 0x09, 0xa3, 0x4a,
- 0x67, 0x67, 0x7d, 0x57, 0xa5, 0x03, 0xb8, 0x37, 0x7a, 0xa2, 0xed, 0x52, 0xd2, 0x7f, 0x69, 0x3d,
- 0x9f, 0x70, 0x5b, 0x0e, 0xa9, 0x1f, 0xe9, 0xcc, 0x3f, 0x95, 0xbf, 0x1f, 0xc0, 0x6a, 0xe1, 0x7c,
- 0x91, 0xf3, 0xbf, 0x86, 0x25, 0xd9, 0x65, 0x73, 0x18, 0x74, 0xfc, 0xa9, 0xdc, 0xfa, 0x3e, 0x84,
- 0xe5, 0xb4, 0xc8, 0x31, 0xe7, 0x54, 0x1f, 0x90, 0xd8, 0xdd, 0x5b, 0x24, 0xe8, 0x7a, 0xe7, 0x13,
- 0xfa, 0xaf, 0x3b, 0xf4, 0x7d, 0x7b, 0xe0, 0xb0, 0x5e, 0xec, 0x3f, 0x4e, 0x38, 0x76, 0x58, 0x4f,
- 0x19, 0xe4, 0x23, 0x58, 0x4a, 0x4d, 0x37, 0x36, 0x6d, 0xfe, 0x34, 0x03, 0xcd, 0x13, 0xcc, 0x26,
- 0x57, 0xed, 0x73, 0xa8, 0xe0, 0x80, 0x51, 0x0f, 0xcb, 0xd4, 0x52, 0x5f, 0xbf, 0x17, 0x0f, 0x18,
- 0x15, 0xbf, 0xb6, 0x13, 0x30, 0x7a, 0x65, 0xc5, 0xdd, 0x8d, 0x1f, 0xcb, 0x30, 0x2f, 0x48, 0xdc,
- 0xc9, 0xfc, 0x66, 0x27, 0x13, 0x0c, 0xff, 0x44, 0x77, 0xa1, 0x26, 0x8e, 0x58, 0x3b, 0x64, 0x54,
- 0x2e, 0x78, 0xbf, 0x64, 0x55, 0x05, 0xe9, 0x84, 0x51, 0xf4, 0x00, 0xea, 0x92, 0xed, 0x05, 0xec,
- 0xe9, 0xba, 0xc8, 0xce, 0xf3, 0xfb, 0x25, 0x0b, 0x04, 0xf1, 0x80, 0xd3, 0xd0, 0x2a, 0xc8, 0x96,
- 0x7d, 0x46, 0x88, 0x2f, 0xef, 0x99, 0xfb, 0x25, 0x4b, 0x4a, 0xdd, 0x24, 0xc4, 0xdf, 0xac, 0x44,
- 0x47, 0xba, 0xb2, 0xdf, 0x12, 0x2c, 0x26, 0x54, 0x8e, 0x42, 0x08, 0xc3, 0xd2, 0x36, 0xf6, 0xf1,
- 0x34, 0x9c, 0x88, 0x60, 0xee, 0x02, 0x5f, 0x49, 0x33, 0xd5, 0x2c, 0xf1, 0xad, 0xe6, 0xbe, 0x05,
- 0xcb, 0xe9, 0x69, 0xa2, 0xe9, 0x2f, 0x78, 0x5d, 0x19, 0x32, 0x42, 0xf1, 0xd6, 0x30, 0x64, 0xa4,
- 0xbf, 0x4f, 0xc8, 0x45, 0x38, 0xa1, 0x12, 0x22, 0x4e, 0x67, 0x74, 0x9c, 0x26, 0xcb, 0x85, 0xbc,
- 0xc9, 0x22, 0x55, 0xbe, 0x81, 0xd6, 0xa6, 0xe3, 0x5e, 0x0c, 0x07, 0xd3, 0xd1, 0x44, 0xed, 0xa8,
- 0x27, 0xd0, 0xce, 0x91, 0x3b, 0x66, 0x5b, 0x85, 0xf0, 0x20, 0x6f, 0xe3, 0x4f, 0xbc, 0xc7, 0xc7,
- 0xda, 0xe6, 0x11, 0x98, 0xe3, 0x26, 0x8d, 0x6c, 0x74, 0x0c, 0x88, 0x9f, 0xa1, 0xcf, 0x3d, 0x17,
- 0x07, 0xe1, 0x54, 0xf2, 0xcd, 0x16, 0x2c, 0xa5, 0x24, 0x46, 0x76, 0xf9, 0x18, 0x90, 0x2f, 0x49,
- 0x76, 0xd8, 0x23, 0x94, 0xd9, 0x81, 0xd3, 0x8f, 0x4f, 0xe8, 0x66, 0xc4, 0x39, 0xe1, 0x8c, 0x43,
- 0xa7, 0x2f, 0x5c, 0xb7, 0x87, 0xd9, 0x41, 0xd0, 0x25, 0x1b, 0xd3, 0xa8, 0x3d, 0x95, 0x72, 0xff,
- 0x0f, 0xed, 0x1c, 0xb9, 0x91, 0x8a, 0xf7, 0x00, 0x74, 0xd1, 0x19, 0x39, 0x30, 0x41, 0xe1, 0x4a,
- 0x6d, 0x39, 0xbe, 0x3b, 0xf4, 0x1d, 0x86, 0xb7, 0x7a, 0xd8, 0xbd, 0x08, 0x87, 0xfd, 0x69, 0x28,
- 0xf5, 0x7f, 0xd0, 0xce, 0x91, 0x1b, 0x29, 0x65, 0x40, 0xd5, 0x8d, 0x68, 0x91, 0xb5, 0x54, 0x9b,
- 0x3b, 0x6f, 0x0f, 0xb3, 0x93, 0xc0, 0x19, 0x84, 0x3d, 0xc2, 0xa6, 0xa1, 0xca, 0x07, 0xb0, 0x94,
- 0x92, 0x38, 0x26, 0xa8, 0xff, 0x5c, 0x86, 0x87, 0x79, 0x01, 0x36, 0x05, 0x75, 0x78, 0x09, 0xdc,
- 0x63, 0x6c, 0x60, 0xeb, 0x83, 0xb4, 0xc2, 0xdb, 0x2f, 0xa9, 0xcf, 0x0f, 0x16, 0xc1, 0x72, 0x86,
- 0xac, 0x17, 0x95, 0x81, 0xa2, 0xef, 0xc6, 0x30, 0x71, 0xb0, 0xbc, 0x07, 0x8f, 0xc6, 0xab, 0x16,
- 0x45, 0xff, 0x9f, 0xca, 0xb0, 0xbc, 0x87, 0x99, 0xe5, 0x5c, 0x6e, 0xf5, 0x9c, 0xe0, 0x7c, 0x32,
- 0x7c, 0xe3, 0x21, 0x5c, 0xeb, 0x52, 0xd2, 0xb7, 0x53, 0x20, 0x47, 0xcd, 0x6a, 0x70, 0xa2, 0xba,
- 0x63, 0xaf, 0x42, 0x9d, 0x11, 0x3b, 0x75, 0x4b, 0xaf, 0x59, 0xc0, 0x88, 0x95, 0x46, 0x42, 0x66,
- 0xcc, 0x7f, 0xcc, 0xc2, 0xcd, 0x11, 0xd5, 0x22, 0x67, 0xec, 0x43, 0x9d, 0x3a, 0x97, 0xb6, 0x2b,
- 0xc9, 0xad, 0xb2, 0x38, 0xc3, 0xde, 0x4f, 0x94, 0xbc, 0xd9, 0x31, 0x6b, 0x8a, 0x64, 0x01, 0x55,
- 0x5c, 0xe3, 0xc7, 0x59, 0xa8, 0x29, 0x0e, 0x5a, 0x81, 0xca, 0x99, 0x4f, 0xce, 0xf8, 0x85, 0x4b,
- 0x06, 0xda, 0x02, 0x6f, 0x1e, 0x74, 0x14, 0x3a, 0x34, 0xa3, 0xd1, 0x21, 0x01, 0x52, 0xe0, 0x4b,
- 0x79, 0xbc, 0xcb, 0x45, 0x54, 0x02, 0x7c, 0xc9, 0x4f, 0x77, 0xce, 0xe2, 0x95, 0x86, 0x60, 0xcd,
- 0x49, 0x16, 0xf1, 0x3b, 0x82, 0x75, 0x04, 0x35, 0x32, 0xc0, 0xd4, 0x61, 0x7c, 0xed, 0xf3, 0xa2,
- 0x56, 0xff, 0xec, 0x1d, 0x15, 0x5f, 0x3b, 0x8a, 0x07, 0x5a, 0x5a, 0x06, 0xb7, 0x39, 0xb7, 0x85,
- 0x16, 0x2a, 0xb1, 0x96, 0x06, 0x75, 0x2e, 0x55, 0xff, 0x58, 0xa1, 0x3e, 0xe9, 0x60, 0x01, 0xb7,
- 0xcc, 0x0b, 0x85, 0x5e, 0x90, 0x8e, 0x5a, 0x86, 0x60, 0x55, 0x25, 0x2b, 0xc0, 0x97, 0x9c, 0x65,
- 0x7a, 0x50, 0xd3, 0x22, 0xea, 0x50, 0x79, 0x79, 0xf8, 0xd5, 0xe1, 0xd1, 0xab, 0xc3, 0x66, 0x09,
- 0xd5, 0x60, 0x7e, 0x63, 0x7b, 0x7b, 0x67, 0x5b, 0x62, 0x04, 0x5b, 0x47, 0xc7, 0x07, 0x3b, 0xdb,
- 0x12, 0x23, 0xd8, 0xde, 0x79, 0xbe, 0x73, 0xba, 0xb3, 0xdd, 0x9c, 0x45, 0x0d, 0xa8, 0xbe, 0x38,
- 0xda, 0x3e, 0xd8, 0xe5, 0xac, 0x39, 0xce, 0xb2, 0x76, 0x0e, 0x37, 0x5e, 0xec, 0x6c, 0x37, 0xe7,
- 0x51, 0x13, 0x1a, 0xa7, 0xbf, 0x3a, 0xde, 0xb1, 0xb7, 0xf6, 0x37, 0x0e, 0xf7, 0x76, 0xb6, 0x9b,
- 0x0b, 0xe6, 0x6f, 0xa1, 0x75, 0x82, 0x1d, 0xea, 0xf6, 0x76, 0x3d, 0x1f, 0x87, 0x9b, 0x57, 0x3c,
- 0x05, 0x4e, 0x12, 0x89, 0xcb, 0x30, 0xff, 0xfd, 0x10, 0x47, 0x55, 0x49, 0xcd, 0x92, 0x8d, 0xb8,
- 0x5e, 0x9c, 0x55, 0xf5, 0xa2, 0x8a, 0xb5, 0xcf, 0xa0, 0x9d, 0x33, 0xbf, 0xbe, 0x8d, 0x75, 0x39,
- 0x59, 0x04, 0x5a, 0xc3, 0x92, 0x0d, 0xf3, 0x2f, 0x65, 0xb8, 0x9d, 0x1a, 0xb3, 0x45, 0x02, 0x86,
- 0x03, 0xf6, 0x33, 0xa8, 0x8d, 0x3e, 0x80, 0xa6, 0xdb, 0x1b, 0x06, 0x17, 0x98, 0x97, 0xb3, 0x52,
- 0xcb, 0x08, 0x96, 0xbb, 0x11, 0xd1, 0x63, 0xe5, 0xd5, 0x0a, 0xaf, 0xe0, 0x4e, 0xbe, 0xb6, 0xd1,
- 0x22, 0x5b, 0x50, 0xe9, 0x3b, 0xcc, 0xed, 0xa9, 0x65, 0xc6, 0x4d, 0x74, 0x17, 0x40, 0x7c, 0xda,
- 0x89, 0x83, 0xb6, 0x26, 0x28, 0xdb, 0x0e, 0x73, 0xd0, 0x7d, 0x68, 0xe0, 0xa0, 0x63, 0x93, 0xae,
- 0x2d, 0x68, 0x11, 0x6c, 0x08, 0x38, 0xe8, 0x1c, 0x75, 0x5f, 0x70, 0x8a, 0xf9, 0xb7, 0x32, 0xdc,
- 0x38, 0xa6, 0x38, 0x42, 0xea, 0xa4, 0x75, 0x72, 0x4b, 0xc8, 0xf2, 0x7f, 0x81, 0x9a, 0x3c, 0x83,
- 0x45, 0x05, 0x88, 0xbc, 0x4b, 0x0d, 0x1a, 0x63, 0x25, 0x4a, 0xc0, 0x53, 0xa8, 0x93, 0xb3, 0xef,
- 0xb0, 0xcb, 0xec, 0x01, 0xbf, 0x6d, 0xce, 0xa6, 0x87, 0x1e, 0x09, 0xd6, 0x31, 0x21, 0xbe, 0x05,
- 0x44, 0x7d, 0x2b, 0x6b, 0x22, 0x68, 0xea, 0x15, 0x45, 0xa9, 0xf4, 0x3b, 0x58, 0x90, 0x38, 0x64,
- 0x5c, 0x00, 0x95, 0x55, 0x01, 0xc4, 0x13, 0x88, 0x38, 0xed, 0xa5, 0x5f, 0xc5, 0x37, 0xfa, 0x02,
- 0xda, 0x2a, 0x8f, 0x13, 0xea, 0xbd, 0x15, 0xfb, 0xcc, 0xee, 0x61, 0xa7, 0x83, 0x69, 0x94, 0x51,
- 0x56, 0xe2, 0xbc, 0xae, 0xf8, 0xfb, 0x82, 0x6d, 0xfe, 0xa1, 0x0c, 0xb7, 0xc4, 0xec, 0xfb, 0xa7,
- 0xa7, 0xc7, 0x93, 0x63, 0xc1, 0xef, 0xa5, 0xb0, 0xe0, 0xfa, 0xfa, 0x75, 0xdd, 0x5f, 0x88, 0x8e,
- 0xb1, 0xe1, 0x04, 0xd8, 0x3b, 0x9b, 0x02, 0x7b, 0x95, 0x61, 0xda, 0xb0, 0x92, 0xd1, 0x4b, 0xda,
- 0x67, 0xfd, 0x77, 0x2d, 0xf1, 0xa6, 0x12, 0xa3, 0xef, 0xf2, 0x11, 0x0a, 0xbd, 0x82, 0xe6, 0xe8,
- 0x8b, 0x10, 0x5a, 0xcd, 0xaa, 0x9b, 0x7a, 0x82, 0x32, 0xee, 0x17, 0x77, 0x88, 0x9c, 0x51, 0x42,
- 0xaf, 0xe3, 0x17, 0x9c, 0xc4, 0xf3, 0x0e, 0x4a, 0x0e, 0xcc, 0x7d, 0x51, 0x32, 0x1e, 0x8c, 0xe9,
- 0xa1, 0x64, 0xef, 0x00, 0xe8, 0x77, 0x1a, 0xd4, 0x4e, 0x0f, 0x49, 0xbc, 0x18, 0x19, 0x46, 0x1e,
- 0x4b, 0x89, 0xf9, 0x1a, 0xae, 0xa7, 0x9f, 0x57, 0xd0, 0x5d, 0x75, 0x16, 0xe4, 0x3d, 0xf8, 0x18,
- 0xf7, 0x8a, 0xd8, 0x49, 0x91, 0xe9, 0x17, 0x0e, 0x2d, 0x32, 0xf7, 0x39, 0x45, 0x8b, 0xcc, 0x7f,
- 0x18, 0x31, 0x4b, 0xe8, 0xd7, 0x80, 0xb2, 0x2f, 0x12, 0x48, 0xd9, 0xa9, 0xf0, 0x89, 0xc4, 0x30,
- 0xc7, 0x75, 0x51, 0xe2, 0xf7, 0xa1, 0x9e, 0xc0, 0xf0, 0x91, 0xb2, 0x58, 0xf6, 0x99, 0xc3, 0xb8,
- 0x9d, 0xcb, 0x53, 0x92, 0x5e, 0x41, 0x73, 0xf4, 0xce, 0xa3, 0x43, 0xa9, 0xe0, 0x41, 0x40, 0x87,
- 0x52, 0x21, 0xb4, 0x5f, 0x42, 0x7b, 0x00, 0x1a, 0xe6, 0xd6, 0xee, 0xce, 0x60, 0xeb, 0xda, 0xdd,
- 0x59, 0x54, 0xdc, 0x2c, 0x7d, 0x5a, 0xe6, 0x1a, 0x8e, 0xc2, 0xd5, 0x5a, 0xc3, 0x02, 0x7c, 0x5c,
- 0x6b, 0x58, 0x84, 0x74, 0xcb, 0x60, 0xcf, 0xe0, 0xbe, 0x3a, 0xd8, 0x8b, 0xf0, 0x6e, 0x1d, 0xec,
- 0x85, 0xa0, 0xb1, 0x59, 0x42, 0x4f, 0x61, 0x6e, 0x37, 0x74, 0x2f, 0xd0, 0x92, 0xea, 0xac, 0xc1,
- 0x62, 0x63, 0x39, 0x4d, 0x54, 0x83, 0x9e, 0x41, 0x35, 0x46, 0x49, 0xd1, 0x4a, 0xdc, 0x67, 0x04,
- 0xf3, 0x35, 0x5a, 0x59, 0x86, 0x12, 0x70, 0x08, 0xd7, 0x52, 0xd0, 0x26, 0xba, 0xa3, 0x66, 0xca,
- 0xc1, 0x58, 0x8d, 0xbb, 0x05, 0xdc, 0xe4, 0x96, 0xd5, 0x50, 0xa3, 0xf6, 0x61, 0x06, 0x10, 0xd5,
- 0x3e, 0xcc, 0x41, 0x26, 0xc5, 0x66, 0xc8, 0xa2, 0x84, 0x7a, 0x33, 0x14, 0xe2, 0x96, 0x7a, 0x33,
- 0x14, 0x83, 0x8c, 0xb1, 0xf8, 0x51, 0x3c, 0x2f, 0x29, 0xbe, 0x00, 0x61, 0x4c, 0x8a, 0x2f, 0x82,
- 0x03, 0xcd, 0x12, 0xf2, 0xb3, 0x0f, 0x63, 0x11, 0xfe, 0x86, 0xde, 0x2b, 0xda, 0x07, 0x69, 0x40,
- 0xd0, 0x78, 0xff, 0x3f, 0xf6, 0x53, 0xb3, 0xbd, 0x80, 0x46, 0x12, 0x77, 0x43, 0xb7, 0xd3, 0x43,
- 0x53, 0xc5, 0xbf, 0x71, 0x27, 0x9f, 0x99, 0xd8, 0x3c, 0x97, 0x60, 0x14, 0x97, 0xf3, 0xe8, 0x83,
- 0x71, 0x7a, 0xa5, 0xa7, 0xfa, 0xf0, 0x5d, 0xba, 0xc6, 0x13, 0x3f, 0x2e, 0xf3, 0x0c, 0x95, 0x00,
- 0xe9, 0x74, 0x86, 0xca, 0x02, 0x85, 0x3a, 0x43, 0xe5, 0xa0, 0x7a, 0x66, 0x09, 0x6d, 0x42, 0x4d,
- 0xc1, 0x55, 0xa8, 0x55, 0x04, 0xba, 0x19, 0xed, 0x1c, 0x8e, 0x92, 0xf1, 0x15, 0x34, 0x92, 0xb0,
- 0x93, 0xb6, 0x6a, 0x0e, 0xe6, 0xa5, 0xad, 0x9a, 0x8b, 0x54, 0xc9, 0xe4, 0xab, 0xa1, 0x8a, 0x44,
- 0xf2, 0xcd, 0x20, 0x22, 0x89, 0xe4, 0x9b, 0xc5, 0x36, 0xcc, 0x12, 0xfa, 0x56, 0xbc, 0x7f, 0xa6,
- 0x71, 0x05, 0x94, 0x7c, 0x86, 0xcc, 0x85, 0x32, 0x74, 0x06, 0x2a, 0x04, 0x25, 0x84, 0xef, 0x5f,
- 0xc3, 0x62, 0x06, 0x20, 0xd0, 0xd2, 0x8b, 0x30, 0x09, 0x2d, 0xbd, 0x10, 0x5d, 0x30, 0x4b, 0xe8,
- 0x17, 0x50, 0x89, 0x7e, 0x3e, 0x40, 0xb7, 0x54, 0xff, 0xd4, 0xbf, 0x0d, 0xc6, 0x4a, 0x86, 0xae,
- 0x46, 0x7f, 0x09, 0xf5, 0x04, 0x5e, 0x80, 0x92, 0x27, 0xc0, 0x08, 0x0e, 0xa0, 0x2d, 0x98, 0x03,
- 0x30, 0x88, 0x55, 0xfe, 0x06, 0xee, 0x8c, 0x2b, 0xda, 0xd1, 0x47, 0xe3, 0x02, 0x77, 0x74, 0xb6,
- 0x8f, 0xdf, 0xad, 0xb3, 0x5a, 0xc8, 0x31, 0x5c, 0x4b, 0x15, 0xa0, 0x3a, 0xe1, 0xe6, 0xe1, 0x03,
- 0x3a, 0xe1, 0xe6, 0x56, 0xad, 0x62, 0x39, 0x18, 0x96, 0xf3, 0x4a, 0x0e, 0xf4, 0x50, 0x87, 0x77,
- 0x61, 0xf9, 0x64, 0x3c, 0x1a, 0xdf, 0x29, 0x31, 0xcd, 0xb7, 0xb0, 0x98, 0xa9, 0xdd, 0x74, 0x6c,
- 0x14, 0x95, 0x95, 0x3a, 0x36, 0x0a, 0x0b, 0x3f, 0x21, 0xdd, 0x06, 0x94, 0x05, 0x58, 0x51, 0xe2,
- 0x96, 0x58, 0x80, 0xf4, 0xea, 0x8c, 0x3c, 0x06, 0x9f, 0xe5, 0xd9, 0xe5, 0x5b, 0x58, 0xcc, 0x60,
- 0xa9, 0x5a, 0xfd, 0x22, 0xf8, 0x56, 0xab, 0x5f, 0x08, 0xc4, 0x0a, 0xf5, 0x9f, 0x41, 0x35, 0x2e,
- 0x54, 0xf4, 0x39, 0x3c, 0x52, 0x8c, 0xe9, 0x73, 0x38, 0x53, 0xd3, 0x94, 0xd0, 0x29, 0xdc, 0x18,
- 0xb9, 0xd0, 0xa3, 0x7b, 0xa9, 0x5b, 0x43, 0xa6, 0x02, 0x31, 0x56, 0x0b, 0xf9, 0xb1, 0xd4, 0xcd,
- 0x4f, 0x5f, 0xf3, 0x3e, 0xbe, 0x73, 0xb6, 0xe6, 0x92, 0xfe, 0x13, 0xf9, 0xf9, 0x09, 0xa1, 0xe7,
- 0x4f, 0xe4, 0xc8, 0x4f, 0xc4, 0x4f, 0x68, 0x4f, 0xce, 0x49, 0xd4, 0x1e, 0x9c, 0x9d, 0x2d, 0x08,
- 0xd2, 0xd3, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0x40, 0x12, 0xdf, 0xa3, 0xc9, 0x26, 0x00, 0x00,
+ proto.RegisterFile("repository-service.proto", fileDescriptor_repository_service_45a38d9645d45314)
+}
+
+var fileDescriptor_repository_service_45a38d9645d45314 = []byte{
+ // 2741 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4b, 0x73, 0x1b, 0xc7,
+ 0x11, 0xc6, 0x83, 0x24, 0x80, 0x06, 0x24, 0x81, 0x43, 0x4a, 0x04, 0xa0, 0x07, 0xa5, 0x95, 0xca,
+ 0x96, 0x5f, 0x94, 0x4d, 0x1d, 0xe2, 0x72, 0x92, 0x52, 0xf1, 0x4d, 0xda, 0x12, 0x49, 0x2f, 0x29,
+ 0xab, 0xac, 0x72, 0x6a, 0x6b, 0xb9, 0x18, 0x10, 0x6b, 0x2e, 0x76, 0xe0, 0xdd, 0x81, 0x68, 0x3a,
+ 0x55, 0xb9, 0xb9, 0x72, 0xc9, 0xc1, 0xa7, 0x3c, 0xfe, 0x43, 0x7e, 0x41, 0x7e, 0x45, 0xee, 0xf9,
+ 0x05, 0xb9, 0xe4, 0x90, 0x5f, 0x90, 0x9a, 0xc7, 0xce, 0xec, 0x62, 0x77, 0x11, 0xa5, 0x80, 0x72,
+ 0x6e, 0x3b, 0x3d, 0x33, 0xdd, 0x3d, 0xdd, 0x3d, 0x3d, 0xd3, 0xdf, 0x2c, 0xb4, 0x02, 0x3c, 0x24,
+ 0xa1, 0x4b, 0x49, 0x70, 0xf5, 0x51, 0x88, 0x83, 0x37, 0xae, 0x83, 0xd7, 0x86, 0x01, 0xa1, 0x04,
+ 0x2d, 0x9c, 0xbb, 0xd4, 0xf6, 0xae, 0x3a, 0x8d, 0xb0, 0x6f, 0x07, 0xb8, 0x2b, 0xa8, 0xc6, 0x4b,
+ 0x58, 0x31, 0xd5, 0x8c, 0x9d, 0xef, 0xdd, 0x90, 0x86, 0x26, 0xfe, 0x6e, 0x84, 0x43, 0x8a, 0xd6,
+ 0x01, 0x34, 0xb3, 0x56, 0xf1, 0x7e, 0xf1, 0x71, 0x7d, 0x1d, 0xad, 0x09, 0x2e, 0x6b, 0x7a, 0x92,
+ 0x19, 0x1b, 0xf5, 0xd9, 0xc2, 0xbf, 0xff, 0xf4, 0xb8, 0x54, 0x2d, 0x19, 0xeb, 0xd0, 0x4a, 0xb3,
+ 0x0d, 0x87, 0xc4, 0x0f, 0x31, 0xba, 0x05, 0x0b, 0x98, 0x53, 0x38, 0xcf, 0xaa, 0x29, 0x5b, 0xc6,
+ 0x57, 0x7c, 0x8e, 0xed, 0x5c, 0x1c, 0xf8, 0x4e, 0x80, 0x07, 0xd8, 0xa7, 0xb6, 0x37, 0xbd, 0x2e,
+ 0x45, 0xe3, 0x36, 0xb4, 0x33, 0xf8, 0x0a, 0x65, 0x0c, 0x0a, 0x8b, 0xa2, 0x73, 0x77, 0xe4, 0x4d,
+ 0x23, 0x0d, 0x3d, 0x84, 0x6b, 0x4e, 0x80, 0x6d, 0x8a, 0xad, 0x33, 0x97, 0x0e, 0xec, 0x61, 0xab,
+ 0xc4, 0x17, 0xd7, 0x10, 0xc4, 0x4d, 0x4e, 0x53, 0x2a, 0x2d, 0x03, 0x8a, 0x4b, 0x95, 0xba, 0x7c,
+ 0x0f, 0x37, 0xf7, 0xec, 0xe0, 0xcc, 0x3e, 0xc7, 0x5b, 0xc4, 0xf3, 0xb0, 0x43, 0x7f, 0x36, 0x7d,
+ 0x5a, 0x70, 0x6b, 0x5c, 0xb2, 0xd4, 0xe9, 0x39, 0x5c, 0xdf, 0xf2, 0xb0, 0xed, 0x8f, 0x86, 0xb3,
+ 0x70, 0xc5, 0x22, 0xdc, 0x50, 0xdc, 0xa4, 0x80, 0x13, 0xb8, 0xa9, 0x27, 0x9d, 0xb8, 0x3f, 0xe0,
+ 0x59, 0x84, 0xdf, 0x87, 0x70, 0x6b, 0x9c, 0xa9, 0x0c, 0x3e, 0x04, 0x73, 0xa1, 0xfb, 0x03, 0xe6,
+ 0xfc, 0xca, 0x26, 0xff, 0x36, 0x42, 0x68, 0x6f, 0x0c, 0x87, 0xde, 0xd5, 0x9e, 0x4b, 0x6d, 0x4a,
+ 0x03, 0xf7, 0x6c, 0x44, 0xf1, 0x34, 0xbb, 0x00, 0x75, 0xa0, 0x1a, 0xe0, 0x37, 0x6e, 0xe8, 0x12,
+ 0x9f, 0x9b, 0xbd, 0x61, 0xaa, 0xb6, 0x32, 0xc5, 0x1d, 0xe8, 0x64, 0x09, 0x95, 0x56, 0xf9, 0x43,
+ 0x09, 0xd0, 0x2e, 0xa6, 0x4e, 0xdf, 0xc4, 0x03, 0x42, 0xa7, 0xb1, 0x09, 0xdb, 0x6e, 0x01, 0x67,
+ 0xc2, 0x55, 0xa9, 0x99, 0xb2, 0x85, 0x96, 0x61, 0xbe, 0x47, 0x02, 0x07, 0xb7, 0xca, 0x3c, 0x30,
+ 0x44, 0x03, 0xad, 0x40, 0xc5, 0x27, 0x16, 0xb5, 0xcf, 0xc3, 0xd6, 0x9c, 0xd8, 0x9d, 0x3e, 0x39,
+ 0xb5, 0xcf, 0x43, 0xd4, 0x82, 0x0a, 0x75, 0x07, 0x98, 0x8c, 0x68, 0x6b, 0xfe, 0x7e, 0xf1, 0xf1,
+ 0xbc, 0x19, 0x35, 0xd9, 0x94, 0x30, 0xec, 0x5b, 0x17, 0xf8, 0xaa, 0xb5, 0x20, 0x24, 0x84, 0x61,
+ 0xff, 0x0b, 0x7c, 0x85, 0x56, 0xa1, 0x7e, 0xe1, 0x93, 0x4b, 0xdf, 0xea, 0x13, 0xb6, 0xdb, 0x2b,
+ 0xbc, 0x13, 0x38, 0x69, 0x9f, 0x51, 0x50, 0x1b, 0xaa, 0x3e, 0xb1, 0x86, 0xc1, 0xc8, 0xc7, 0xad,
+ 0x1a, 0x97, 0x56, 0xf1, 0xc9, 0x31, 0x6b, 0x46, 0x66, 0xfa, 0x7c, 0xae, 0x5a, 0x6d, 0xd6, 0x8c,
+ 0x9b, 0xb0, 0x94, 0xb0, 0x86, 0xb4, 0xd2, 0x4b, 0x58, 0xd9, 0xe2, 0xe1, 0x1c, 0x5b, 0xfa, 0x0c,
+ 0xa2, 0xb4, 0x03, 0xad, 0x34, 0x5b, 0x29, 0xf2, 0xf7, 0x25, 0x58, 0xdc, 0xc3, 0x74, 0x23, 0x70,
+ 0xfa, 0xee, 0x9b, 0xa9, 0xfc, 0x72, 0x1b, 0x6a, 0x0e, 0x19, 0x0c, 0x5c, 0x6a, 0xb9, 0x5d, 0xe9,
+ 0x9a, 0xaa, 0x20, 0x1c, 0x74, 0x99, 0xd3, 0x86, 0x01, 0xee, 0xb9, 0xdf, 0x73, 0xef, 0xd4, 0x4c,
+ 0xd9, 0x42, 0x9f, 0xc2, 0x42, 0x8f, 0x04, 0x03, 0x9b, 0x72, 0xef, 0x5c, 0x5f, 0xbf, 0x1f, 0x09,
+ 0x49, 0xe9, 0xb4, 0xb6, 0xcb, 0xc7, 0x99, 0x72, 0x3c, 0x0b, 0xfc, 0xa1, 0x4d, 0xfb, 0xdc, 0x79,
+ 0x0d, 0x93, 0x7f, 0x1b, 0x4f, 0x61, 0x41, 0x8c, 0x42, 0x15, 0x28, 0xbf, 0x3e, 0x38, 0x6e, 0x16,
+ 0xd8, 0xc7, 0xe9, 0x86, 0xd9, 0x2c, 0x22, 0x80, 0x85, 0xd3, 0x0d, 0xd3, 0xda, 0x7b, 0xdd, 0x2c,
+ 0xa1, 0x3a, 0x54, 0xd8, 0xf7, 0xe6, 0xeb, 0xf5, 0x66, 0x59, 0xed, 0xb1, 0xc7, 0x80, 0xe2, 0x42,
+ 0xf5, 0xfe, 0xea, 0xda, 0xd4, 0xe6, 0x36, 0x68, 0x98, 0xfc, 0x9b, 0xb9, 0x69, 0xdf, 0x0e, 0x9f,
+ 0x13, 0xc7, 0xf6, 0x36, 0x03, 0xdb, 0x77, 0xfa, 0x78, 0x26, 0x67, 0xcc, 0xc7, 0xd0, 0x4a, 0xb3,
+ 0x95, 0x6a, 0x2c, 0xc3, 0xfc, 0x1b, 0xdb, 0x1b, 0x61, 0x79, 0xc4, 0x88, 0x86, 0xf1, 0x8f, 0x22,
+ 0xb4, 0x78, 0x1c, 0x9d, 0x90, 0x51, 0xe0, 0x60, 0x31, 0x6b, 0x1a, 0x1f, 0x3e, 0x83, 0xc5, 0x90,
+ 0xb3, 0xb2, 0x62, 0x53, 0x4b, 0xb9, 0x53, 0x9b, 0x62, 0xb0, 0x99, 0xc8, 0xd2, 0x92, 0xc1, 0x19,
+ 0x57, 0x86, 0xbb, 0xbb, 0x61, 0x36, 0xc2, 0x98, 0x82, 0xe8, 0x2e, 0x00, 0xb5, 0x83, 0x73, 0x4c,
+ 0xad, 0x00, 0xf7, 0xb8, 0xe3, 0x1b, 0x66, 0x4d, 0x50, 0x4c, 0xdc, 0x53, 0x61, 0xfb, 0x14, 0xda,
+ 0x19, 0x8b, 0xd3, 0x87, 0x6e, 0x80, 0xc3, 0x91, 0x47, 0xa3, 0x43, 0x57, 0xb4, 0x8c, 0x03, 0xa8,
+ 0xef, 0x86, 0xce, 0xc5, 0x2c, 0xb6, 0xcd, 0x23, 0x68, 0x08, 0x56, 0xda, 0x07, 0x38, 0x08, 0x48,
+ 0x20, 0x63, 0x41, 0x34, 0x8c, 0xbf, 0x15, 0xe1, 0xc6, 0xab, 0xc0, 0x65, 0x9b, 0xab, 0x37, 0x8d,
+ 0xe9, 0x9b, 0x50, 0x66, 0xd6, 0x10, 0xe9, 0x95, 0x7d, 0x26, 0xb2, 0x6e, 0x39, 0x99, 0x75, 0xd1,
+ 0x03, 0x68, 0x10, 0xaf, 0x6b, 0xa9, 0x7e, 0x61, 0xc4, 0x3a, 0xf1, 0xba, 0x66, 0x34, 0x44, 0xe5,
+ 0xc3, 0xf9, 0x58, 0x3e, 0x8c, 0xe5, 0xa1, 0x85, 0x66, 0xc5, 0x68, 0x41, 0x53, 0xeb, 0x2e, 0x96,
+ 0xf9, 0xf9, 0x5c, 0xb5, 0xd8, 0x2c, 0x19, 0x43, 0x58, 0xde, 0x75, 0xfd, 0xee, 0x0b, 0x1c, 0x9c,
+ 0xe3, 0x4d, 0x3b, 0x9c, 0x2a, 0x33, 0xdc, 0x81, 0x5a, 0xa4, 0x68, 0xd8, 0x2a, 0xdd, 0x2f, 0x33,
+ 0x77, 0x2b, 0x82, 0x0a, 0xff, 0x0f, 0xe0, 0xe6, 0x98, 0x44, 0xbd, 0x05, 0xcf, 0xec, 0x50, 0x84,
+ 0x7e, 0xcd, 0xe4, 0xdf, 0xc6, 0x4f, 0x45, 0x58, 0x14, 0x39, 0x6d, 0x97, 0x04, 0x17, 0xff, 0xcf,
+ 0x90, 0x8f, 0xdf, 0x81, 0xe2, 0x1a, 0xa9, 0xfb, 0x58, 0xfb, 0x20, 0x34, 0x31, 0x53, 0xfa, 0xc0,
+ 0x3f, 0x0e, 0xc8, 0x79, 0x80, 0xc3, 0x70, 0xca, 0x34, 0x1b, 0x70, 0x76, 0xb1, 0x34, 0x2b, 0x08,
+ 0x07, 0x5d, 0x65, 0xcb, 0x5f, 0x43, 0x27, 0x4b, 0xaa, 0x34, 0xe8, 0x2a, 0xd4, 0x5d, 0xdf, 0x1a,
+ 0x4a, 0xb2, 0xdc, 0x40, 0xe0, 0xaa, 0x81, 0x42, 0xe9, 0x93, 0xef, 0x46, 0x76, 0xd8, 0x9f, 0x99,
+ 0xd2, 0x21, 0x67, 0x17, 0x53, 0x5a, 0x10, 0xc6, 0x95, 0x4e, 0x4b, 0x7d, 0x5b, 0xa5, 0x7d, 0xb8,
+ 0x37, 0x7e, 0xca, 0xed, 0x06, 0x64, 0xf0, 0xd2, 0x7c, 0x3e, 0xe5, 0xb6, 0x1c, 0x05, 0x9e, 0xd4,
+ 0x99, 0x7d, 0x2a, 0x7f, 0x3f, 0x80, 0xd5, 0x5c, 0x79, 0xd2, 0xf9, 0x5f, 0xc2, 0x92, 0x18, 0xb2,
+ 0x39, 0xf2, 0xbb, 0xde, 0x4c, 0x6e, 0x82, 0xef, 0xc3, 0x72, 0x92, 0xe5, 0x84, 0x73, 0x6a, 0x00,
+ 0x88, 0xef, 0xee, 0x2d, 0xe2, 0xf7, 0xdc, 0xf3, 0x29, 0xfd, 0xd7, 0x1b, 0x79, 0x9e, 0xc5, 0x4f,
+ 0x5c, 0xe9, 0x3f, 0x46, 0x38, 0xb6, 0x69, 0x5f, 0x19, 0xe4, 0x03, 0x58, 0x4a, 0x88, 0x9b, 0x98,
+ 0x36, 0x7f, 0x2a, 0x41, 0xf3, 0x04, 0xd3, 0xe9, 0x55, 0xfb, 0x14, 0x2a, 0xd8, 0xa7, 0x81, 0x8b,
+ 0x45, 0x6a, 0xa9, 0xaf, 0xdf, 0x8b, 0x26, 0x8c, 0xb3, 0x5f, 0xdb, 0xf1, 0x69, 0x70, 0x65, 0x46,
+ 0xc3, 0x3b, 0x3f, 0x16, 0x61, 0x9e, 0x93, 0x98, 0x93, 0xd9, 0x6d, 0x4f, 0x24, 0x18, 0xf6, 0x89,
+ 0xee, 0x42, 0x8d, 0x1f, 0xb1, 0x56, 0x48, 0x03, 0xb1, 0xe0, 0xfd, 0x82, 0x59, 0xe5, 0xa4, 0x13,
+ 0x1a, 0xa0, 0x07, 0x50, 0x17, 0xdd, 0xae, 0x4f, 0x9f, 0xae, 0xf3, 0xec, 0x3c, 0xbf, 0x5f, 0x30,
+ 0x81, 0x13, 0x0f, 0x18, 0x0d, 0xad, 0x82, 0x68, 0x59, 0x67, 0x84, 0x78, 0xe2, 0xee, 0xb9, 0x5f,
+ 0x30, 0x05, 0xd7, 0x4d, 0x42, 0xbc, 0xcd, 0x8a, 0x3c, 0xd2, 0x95, 0xfd, 0x96, 0x60, 0x31, 0xa6,
+ 0xb2, 0x0c, 0x21, 0x0c, 0x4b, 0xdb, 0xd8, 0xc3, 0xb3, 0x70, 0x22, 0x82, 0xb9, 0x0b, 0x7c, 0x25,
+ 0xcc, 0x54, 0x33, 0xf9, 0xb7, 0x92, 0x7d, 0x0b, 0x96, 0x93, 0x62, 0xa4, 0xf8, 0x0b, 0x56, 0x6b,
+ 0x86, 0x94, 0x04, 0x78, 0x6b, 0x14, 0x52, 0x32, 0xd8, 0x27, 0xe4, 0x22, 0x9c, 0x52, 0x09, 0x1e,
+ 0xa7, 0x25, 0x1d, 0xa7, 0xf1, 0x12, 0x22, 0x4b, 0x98, 0x54, 0xe5, 0x2b, 0x68, 0x6d, 0xda, 0xce,
+ 0xc5, 0x68, 0x38, 0x1b, 0x4d, 0xd4, 0x8e, 0x7a, 0x02, 0xed, 0x0c, 0xbe, 0x13, 0xb6, 0x55, 0x08,
+ 0x0f, 0xb2, 0x36, 0xfe, 0xd4, 0x7b, 0x7c, 0xa2, 0x6d, 0x1e, 0x81, 0x31, 0x49, 0xa8, 0xb4, 0xd1,
+ 0x31, 0x20, 0x76, 0x86, 0x3e, 0x77, 0x1d, 0xec, 0x87, 0x33, 0xc9, 0x37, 0x5b, 0xb0, 0x94, 0xe0,
+ 0x28, 0xed, 0xf2, 0x21, 0x20, 0x4f, 0x90, 0xac, 0xb0, 0x4f, 0x02, 0x6a, 0xf9, 0xf6, 0x20, 0x3a,
+ 0xa1, 0x9b, 0xb2, 0xe7, 0x84, 0x75, 0x1c, 0xda, 0x03, 0xee, 0xba, 0x3d, 0x4c, 0x0f, 0xfc, 0x1e,
+ 0xd9, 0x98, 0x45, 0x3d, 0xaa, 0x94, 0xfb, 0x25, 0xb4, 0x33, 0xf8, 0x4a, 0x15, 0xef, 0x01, 0xe8,
+ 0x42, 0x54, 0x3a, 0x30, 0x46, 0x61, 0x4a, 0x6d, 0xd9, 0x9e, 0x33, 0xf2, 0x6c, 0x8a, 0xb7, 0xfa,
+ 0xd8, 0xb9, 0x08, 0x47, 0x83, 0x59, 0x28, 0xf5, 0x0b, 0x68, 0x67, 0xf0, 0x95, 0x4a, 0x75, 0xa0,
+ 0xea, 0x48, 0x9a, 0xb4, 0x96, 0x6a, 0x33, 0xe7, 0xed, 0x61, 0x7a, 0xe2, 0xdb, 0xc3, 0xb0, 0x4f,
+ 0xe8, 0x2c, 0x54, 0x79, 0x0f, 0x96, 0x12, 0x1c, 0x27, 0x04, 0xf5, 0x5f, 0x8a, 0xf0, 0x30, 0x2b,
+ 0xc0, 0x66, 0xa0, 0x0e, 0x2b, 0x8b, 0xfb, 0x94, 0x0e, 0x2d, 0x7d, 0x90, 0x56, 0x58, 0xfb, 0x65,
+ 0xe0, 0xb1, 0x83, 0x85, 0x77, 0xd9, 0x23, 0xda, 0x97, 0xa5, 0x21, 0x1f, 0xbb, 0x31, 0x8a, 0x1d,
+ 0x2c, 0xef, 0xc0, 0xa3, 0xc9, 0xaa, 0xc9, 0xe8, 0xff, 0x73, 0x11, 0x96, 0xf7, 0x30, 0x35, 0xed,
+ 0xcb, 0xad, 0xbe, 0xed, 0x9f, 0x4f, 0x87, 0x79, 0x3c, 0x84, 0x6b, 0xbd, 0x80, 0x0c, 0xac, 0x04,
+ 0xf0, 0x51, 0x33, 0x1b, 0x8c, 0xa8, 0xee, 0xd8, 0xab, 0x50, 0xa7, 0xc4, 0x4a, 0xdc, 0xd2, 0x6b,
+ 0x26, 0x50, 0x62, 0x26, 0xd1, 0x91, 0x92, 0xf1, 0xcf, 0x32, 0xdc, 0x1c, 0x53, 0x4d, 0x3a, 0x63,
+ 0x1f, 0xea, 0x81, 0x7d, 0x69, 0x39, 0x82, 0xdc, 0x2a, 0xf2, 0x33, 0xec, 0xdd, 0x58, 0x19, 0x9c,
+ 0x9e, 0xb3, 0xa6, 0x48, 0x26, 0x04, 0xaa, 0xb7, 0xf3, 0x63, 0x19, 0x6a, 0xaa, 0x07, 0xad, 0x40,
+ 0xe5, 0xcc, 0x23, 0x67, 0xec, 0xc2, 0x25, 0x02, 0x6d, 0x81, 0x35, 0x0f, 0xba, 0x0a, 0x31, 0x2a,
+ 0x69, 0xc4, 0x88, 0x03, 0x17, 0xf8, 0x52, 0x1c, 0xef, 0x62, 0x11, 0x15, 0x1f, 0x5f, 0xb2, 0xd3,
+ 0x9d, 0x75, 0xb1, 0x4a, 0x83, 0x77, 0xcd, 0x89, 0x2e, 0xe2, 0x75, 0x79, 0xd7, 0x11, 0xd4, 0xc8,
+ 0x10, 0x07, 0x36, 0x65, 0x6b, 0x9f, 0xe7, 0xf5, 0xfb, 0x27, 0x6f, 0xa9, 0xf8, 0xda, 0x51, 0x34,
+ 0xd1, 0xd4, 0x3c, 0x98, 0xcd, 0x99, 0x2d, 0x34, 0x53, 0x81, 0xbf, 0x34, 0x02, 0xfb, 0x52, 0x8d,
+ 0x8f, 0x14, 0x1a, 0x90, 0x2e, 0xe6, 0x10, 0xcc, 0x3c, 0x57, 0xe8, 0x05, 0xe9, 0xaa, 0x65, 0xf0,
+ 0xae, 0xaa, 0xe8, 0xf2, 0xf1, 0x25, 0xeb, 0x32, 0x5c, 0xa8, 0x69, 0x16, 0x75, 0xa8, 0xbc, 0x3c,
+ 0xfc, 0xe2, 0xf0, 0xe8, 0xd5, 0x61, 0xb3, 0x80, 0x6a, 0x30, 0xbf, 0xb1, 0xbd, 0xbd, 0xb3, 0x2d,
+ 0x30, 0x82, 0xad, 0xa3, 0xe3, 0x83, 0x9d, 0x6d, 0x81, 0x11, 0x6c, 0xef, 0x3c, 0xdf, 0x39, 0xdd,
+ 0xd9, 0x6e, 0x96, 0x51, 0x03, 0xaa, 0x2f, 0x8e, 0xb6, 0x0f, 0x76, 0x59, 0xd7, 0x1c, 0xeb, 0x32,
+ 0x77, 0x0e, 0x37, 0x5e, 0xec, 0x6c, 0x37, 0xe7, 0x51, 0x13, 0x1a, 0xa7, 0x5f, 0x1f, 0xef, 0x58,
+ 0x5b, 0xfb, 0x1b, 0x87, 0x7b, 0x3b, 0xdb, 0xcd, 0x05, 0xe3, 0x77, 0xd0, 0x3a, 0xc1, 0x76, 0xe0,
+ 0xf4, 0x77, 0x5d, 0x0f, 0x87, 0x9b, 0x57, 0x2c, 0x05, 0x4e, 0x13, 0x89, 0xcb, 0x30, 0xff, 0xdd,
+ 0x08, 0xcb, 0xaa, 0xa4, 0x66, 0x8a, 0x46, 0x54, 0x2f, 0x96, 0x55, 0xbd, 0xa8, 0x62, 0xed, 0x13,
+ 0x68, 0x67, 0xc8, 0xd7, 0xb7, 0xb1, 0x1e, 0x23, 0xf3, 0x40, 0x6b, 0x98, 0xa2, 0x61, 0xfc, 0xb5,
+ 0x08, 0xb7, 0x13, 0x73, 0xb6, 0x88, 0x4f, 0xb1, 0x4f, 0x7f, 0x06, 0xb5, 0xd1, 0x7b, 0xd0, 0x74,
+ 0xfa, 0x23, 0xff, 0x02, 0xb3, 0x72, 0x56, 0x68, 0x29, 0xa1, 0xba, 0x1b, 0x92, 0x1e, 0x29, 0xaf,
+ 0x56, 0x78, 0x05, 0x77, 0xb2, 0xb5, 0x95, 0x8b, 0x6c, 0x41, 0x65, 0x60, 0x53, 0xa7, 0xaf, 0x96,
+ 0x19, 0x35, 0xd1, 0x5d, 0x00, 0xfe, 0x69, 0xc5, 0x0e, 0xda, 0x1a, 0xa7, 0x6c, 0xdb, 0xd4, 0x46,
+ 0xf7, 0xa1, 0x81, 0xfd, 0xae, 0x45, 0x7a, 0x16, 0xa7, 0x49, 0x28, 0x11, 0xb0, 0xdf, 0x3d, 0xea,
+ 0xbd, 0x60, 0x14, 0xe3, 0xef, 0x45, 0xb8, 0x71, 0x1c, 0x60, 0x89, 0xde, 0x09, 0xeb, 0x64, 0x96,
+ 0x90, 0xc5, 0xff, 0x01, 0x35, 0x79, 0x06, 0x8b, 0x0a, 0x10, 0x79, 0x9b, 0x1a, 0x34, 0xc2, 0x4a,
+ 0x14, 0x83, 0xa7, 0x50, 0x27, 0x67, 0xdf, 0x62, 0x87, 0x5a, 0x43, 0x76, 0xdb, 0x2c, 0x27, 0xa7,
+ 0x1e, 0xf1, 0xae, 0x63, 0x42, 0x3c, 0x13, 0x88, 0xfa, 0x56, 0xd6, 0x44, 0xd0, 0xd4, 0x2b, 0x92,
+ 0xa9, 0xf4, 0x5b, 0x58, 0x10, 0xd8, 0x64, 0x54, 0x00, 0x15, 0x55, 0x01, 0xc4, 0x12, 0x08, 0x3f,
+ 0xed, 0x85, 0x5f, 0xf9, 0x37, 0xfa, 0x0c, 0xda, 0x2a, 0x8f, 0x93, 0xc0, 0xfd, 0x81, 0xef, 0x33,
+ 0xab, 0x8f, 0xed, 0x2e, 0x0e, 0x64, 0x46, 0x59, 0x89, 0xf2, 0xba, 0xea, 0xdf, 0xe7, 0xdd, 0xc6,
+ 0x1f, 0x8b, 0x70, 0x8b, 0x4b, 0xdf, 0x3f, 0x3d, 0x3d, 0x9e, 0x1e, 0x1f, 0x7e, 0x27, 0x81, 0x0f,
+ 0xd7, 0xd7, 0xaf, 0xeb, 0xf1, 0x9c, 0x75, 0x84, 0x17, 0xc7, 0x00, 0xe0, 0x72, 0x02, 0x00, 0x56,
+ 0x86, 0x69, 0xc3, 0x4a, 0x4a, 0x2f, 0x69, 0x9f, 0xaf, 0xe1, 0xf6, 0xb6, 0x1b, 0x3a, 0xc4, 0xf7,
+ 0xb1, 0x43, 0x37, 0x3c, 0x8a, 0x03, 0xdf, 0x9e, 0xc9, 0xa5, 0xa6, 0x68, 0xdc, 0x83, 0x3b, 0xd9,
+ 0xac, 0x85, 0xe8, 0xf5, 0x7f, 0xb5, 0xf8, 0x13, 0x4f, 0xf4, 0x18, 0x20, 0xde, 0xc4, 0xd0, 0x2b,
+ 0x68, 0x8e, 0x3f, 0x50, 0xa1, 0xd5, 0xb4, 0xc4, 0xc4, 0x8b, 0x58, 0xe7, 0x7e, 0xfe, 0x00, 0xb9,
+ 0xce, 0x02, 0x7a, 0x1d, 0x3d, 0x28, 0xc5, 0x5e, 0x9b, 0x50, 0x7c, 0x62, 0xe6, 0x03, 0x57, 0xe7,
+ 0xc1, 0x84, 0x11, 0x8a, 0xf7, 0x0e, 0x80, 0x7e, 0x36, 0x42, 0xed, 0xe4, 0x94, 0xd8, 0x03, 0x56,
+ 0xa7, 0x93, 0xd5, 0xa5, 0xd8, 0x7c, 0x09, 0xd7, 0x93, 0xaf, 0x3d, 0xe8, 0xae, 0x3a, 0x86, 0xb2,
+ 0xde, 0x9f, 0x3a, 0xf7, 0xf2, 0xba, 0xe3, 0x2c, 0x93, 0x0f, 0x2e, 0x9a, 0x65, 0xe6, 0xeb, 0x8e,
+ 0x66, 0x99, 0xfd, 0x4e, 0x63, 0x14, 0xd0, 0x6f, 0x00, 0xa5, 0x1f, 0x48, 0x90, 0xb2, 0x53, 0xee,
+ 0x8b, 0x4d, 0xc7, 0x98, 0x34, 0x44, 0xb1, 0xdf, 0x87, 0x7a, 0xec, 0x49, 0x01, 0x29, 0x8b, 0xa5,
+ 0x5f, 0x5d, 0x3a, 0xb7, 0x33, 0xfb, 0x14, 0xa7, 0x57, 0xd0, 0x1c, 0xbf, 0x6e, 0xe9, 0x50, 0xca,
+ 0x79, 0x9f, 0xd0, 0xa1, 0x94, 0xfb, 0xd2, 0x50, 0x40, 0x7b, 0x00, 0x1a, 0x61, 0xd7, 0xee, 0x4e,
+ 0x41, 0xfd, 0xda, 0xdd, 0x69, 0x40, 0xde, 0x28, 0x7c, 0x5c, 0x64, 0x1a, 0x8e, 0x23, 0xe5, 0x5a,
+ 0xc3, 0x1c, 0x68, 0x5e, 0x6b, 0x98, 0x07, 0xb2, 0x8b, 0x60, 0x4f, 0x41, 0xce, 0x3a, 0xd8, 0xf3,
+ 0xa0, 0x76, 0x1d, 0xec, 0xb9, 0x78, 0xb5, 0x51, 0x40, 0x4f, 0x61, 0x6e, 0x37, 0x74, 0x2e, 0xd0,
+ 0x92, 0x1a, 0xac, 0x71, 0xea, 0xce, 0x72, 0x92, 0xa8, 0x26, 0x3d, 0x83, 0x6a, 0x04, 0xd0, 0xa2,
+ 0x95, 0x68, 0xcc, 0x18, 0xdc, 0xdc, 0x69, 0xa5, 0x3b, 0x14, 0x83, 0x43, 0xb8, 0x96, 0x40, 0x55,
+ 0xd1, 0x1d, 0x25, 0x29, 0x03, 0xde, 0xed, 0xdc, 0xcd, 0xe9, 0x8d, 0x6f, 0x59, 0x8d, 0x72, 0x6a,
+ 0x1f, 0xa6, 0xb0, 0x58, 0xed, 0xc3, 0x0c, 0x50, 0x94, 0x6f, 0x86, 0x34, 0x40, 0xa9, 0x37, 0x43,
+ 0x2e, 0x64, 0xaa, 0x37, 0x43, 0x3e, 0xbe, 0x19, 0xb1, 0x1f, 0x87, 0x12, 0xe3, 0xec, 0x73, 0xc0,
+ 0xcd, 0x38, 0xfb, 0x3c, 0x24, 0xd2, 0x28, 0x20, 0x2f, 0xfd, 0x4e, 0x27, 0xa1, 0x3f, 0xf4, 0x4e,
+ 0xde, 0x3e, 0x48, 0x62, 0x91, 0x9d, 0x77, 0xff, 0xeb, 0x38, 0x25, 0xed, 0x05, 0x34, 0xe2, 0x90,
+ 0x1f, 0xba, 0x9d, 0x9c, 0x9a, 0xc0, 0x1d, 0x3a, 0x77, 0xb2, 0x3b, 0x63, 0x9b, 0xe7, 0x12, 0x3a,
+ 0xf9, 0x48, 0x02, 0x7a, 0x6f, 0x92, 0x5e, 0x49, 0x51, 0xef, 0xbf, 0xcd, 0xd0, 0x48, 0xf0, 0xe3,
+ 0x22, 0xcb, 0x50, 0x31, 0x7c, 0x50, 0x67, 0xa8, 0x34, 0x46, 0xa9, 0x33, 0x54, 0x06, 0xa0, 0x68,
+ 0x14, 0xd0, 0x26, 0xd4, 0x14, 0x52, 0x86, 0x5a, 0x79, 0x78, 0x5f, 0xa7, 0x9d, 0xd1, 0xa3, 0x78,
+ 0x7c, 0x01, 0x8d, 0x38, 0xe2, 0xa5, 0xad, 0x9a, 0x01, 0xb7, 0x69, 0xab, 0x66, 0x82, 0x64, 0x22,
+ 0xf9, 0x6a, 0x94, 0x24, 0x96, 0x7c, 0x53, 0x60, 0x4c, 0x2c, 0xf9, 0xa6, 0x61, 0x15, 0xa3, 0x80,
+ 0xbe, 0xe1, 0xcf, 0xb1, 0x49, 0x48, 0x03, 0xc5, 0x5f, 0x45, 0x33, 0x51, 0x14, 0x9d, 0x81, 0x72,
+ 0xf1, 0x10, 0xee, 0xfb, 0xd7, 0xb0, 0x98, 0xc2, 0x26, 0x34, 0xf7, 0x3c, 0x38, 0x44, 0x73, 0xcf,
+ 0x05, 0x36, 0x8c, 0x02, 0xfa, 0x15, 0x54, 0xe4, 0xbf, 0x10, 0xe8, 0x96, 0x1a, 0x9f, 0xf8, 0xd5,
+ 0xa2, 0xb3, 0x92, 0xa2, 0xab, 0xd9, 0x9f, 0x43, 0x3d, 0x06, 0x55, 0xa0, 0xf8, 0x09, 0x30, 0x06,
+ 0x41, 0x68, 0x0b, 0x66, 0x60, 0x1b, 0x7c, 0x95, 0xbf, 0x85, 0x3b, 0x93, 0xf0, 0x02, 0xf4, 0xc1,
+ 0xa4, 0xc0, 0x1d, 0x97, 0xf6, 0xe1, 0xdb, 0x0d, 0x56, 0x0b, 0x39, 0x86, 0x6b, 0x89, 0xda, 0x57,
+ 0x27, 0xdc, 0x2c, 0x68, 0x42, 0x27, 0xdc, 0xcc, 0x82, 0x99, 0x2f, 0x07, 0xc3, 0x72, 0x56, 0xb5,
+ 0x83, 0x1e, 0xea, 0xf0, 0xce, 0xad, 0xdc, 0x3a, 0x8f, 0x26, 0x0f, 0x8a, 0x89, 0xf9, 0x06, 0x16,
+ 0x53, 0x65, 0xa3, 0x8e, 0x8d, 0xbc, 0x8a, 0x56, 0xc7, 0x46, 0x6e, 0xcd, 0xc9, 0xb9, 0x5b, 0x80,
+ 0xd2, 0xd8, 0x2e, 0x8a, 0xdd, 0x12, 0x73, 0x40, 0x66, 0x9d, 0x91, 0x27, 0x40, 0xc3, 0x2c, 0xbb,
+ 0x7c, 0x03, 0x8b, 0x29, 0x18, 0x57, 0xab, 0x9f, 0x87, 0x1c, 0x6b, 0xf5, 0x73, 0x31, 0x60, 0xae,
+ 0xfe, 0x33, 0xa8, 0x46, 0x35, 0x92, 0x3e, 0x87, 0xc7, 0xea, 0x40, 0x7d, 0x0e, 0xa7, 0xca, 0xa9,
+ 0x02, 0x3a, 0x85, 0x1b, 0x63, 0xb5, 0x04, 0xba, 0x97, 0xb8, 0x35, 0xa4, 0x8a, 0x9f, 0xce, 0x6a,
+ 0x6e, 0xbf, 0xe2, 0xea, 0xc0, 0x72, 0x56, 0xad, 0xa0, 0x43, 0x63, 0x42, 0x91, 0xa2, 0x43, 0x63,
+ 0x52, 0xb9, 0x61, 0x14, 0x36, 0x3f, 0x7e, 0xcd, 0x06, 0x7a, 0xf6, 0xd9, 0x9a, 0x43, 0x06, 0x4f,
+ 0xc4, 0xe7, 0x47, 0x24, 0x38, 0x7f, 0x22, 0xa6, 0x7f, 0xc4, 0x7f, 0xbc, 0x7b, 0x72, 0x4e, 0x64,
+ 0x7b, 0x78, 0x76, 0xb6, 0xc0, 0x49, 0x4f, 0xff, 0x13, 0x00, 0x00, 0xff, 0xff, 0xed, 0x3d, 0x54,
+ 0xf2, 0xbd, 0x27, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 8752b72f6..6571772f0 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -485,12 +485,12 @@
"revisionTime": "2018-11-02T16:30:54Z"
},
{
- "checksumSHA1": "m2dWxzpWjVu9FT9sNBTEEyCeAYE=",
+ "checksumSHA1": "AG7ITBya8doJBLaAjfKkiEHEgSk=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb",
- "revision": "16718ac6db9f02a58c5ffa510ba30cf2494eb84e",
- "revisionTime": "2019-03-19T15:35:05Z",
- "version": "v1.18.0",
- "versionExact": "v1.18.0"
+ "revision": "30d22f619e88882fab984e1cb8cc5596350a0ffe",
+ "revisionTime": "2019-03-28T23:34:52Z",
+ "version": "jc-disconnect-alternates",
+ "versionExact": "jc-disconnect-alternates"
},
{
"checksumSHA1": "WMOuBgCyclqy+Mqunb0NbykaC4Y=",