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-02-08 09:53:09 +0300
committerJohn Cai <jcai@gitlab.com>2019-03-07 21:45:18 +0300
commitc567d7f895d4fddee836640534b01355830186ce (patch)
treeb212da3776fd8a67152d6d1fc308e0b0bdf2c2b3
parent4c7a3a7b512ba701d70fdccc2ab210a9bce7ed76 (diff)
PreFetch RPC
-rw-r--r--changelogs/unreleased/jc-smart-fetch.yml5
-rw-r--r--internal/git/objectpool/link.go55
-rw-r--r--internal/git/objectpool/pool.go10
-rw-r--r--internal/git/objectpool/proto.go18
-rw-r--r--internal/git/objectpool/test_helper.go19
-rw-r--r--internal/git/proto.go (renamed from internal/git/helper.go)0
-rw-r--r--internal/helper/error.go3
-rw-r--r--internal/service/repository/pre_fetch.go155
-rw-r--r--internal/service/repository/pre_fetch_test.go187
-rw-r--r--internal/testhelper/testhelper.go7
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/README.md4
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION1
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/objectpool.pb.go114
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go582
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/shared.pb.go143
-rw-r--r--vendor/vendor.json10
16 files changed, 927 insertions, 386 deletions
diff --git a/changelogs/unreleased/jc-smart-fetch.yml b/changelogs/unreleased/jc-smart-fetch.yml
new file mode 100644
index 000000000..31a2ea2cf
--- /dev/null
+++ b/changelogs/unreleased/jc-smart-fetch.yml
@@ -0,0 +1,5 @@
+---
+title: 'PreFetch RPC: to optimize a full fetch by doing a local clone from the fork source'
+merge_request: 1073
+author:
+type: added
diff --git a/internal/git/objectpool/link.go b/internal/git/objectpool/link.go
index 7645f7dd9..4a2716a6c 100644
--- a/internal/git/objectpool/link.go
+++ b/internal/git/objectpool/link.go
@@ -1,8 +1,10 @@
package objectpool
import (
+ "bufio"
"context"
"fmt"
+ "io"
"io/ioutil"
"os"
"path/filepath"
@@ -21,12 +23,7 @@ func (o *ObjectPool) Link(ctx context.Context, repo *gitalypb.Repository) error
return err
}
- repoPath, err := helper.GetRepoPath(repo)
- if err != nil {
- return err
- }
-
- relPath, err := filepath.Rel(filepath.Join(repoPath, "objects"), o.FullPath())
+ relPath, err := o.getRelativeObjectPath(repo)
if err != nil {
return err
}
@@ -45,6 +42,52 @@ func (o *ObjectPool) Link(ctx context.Context, repo *gitalypb.Repository) error
return ioutil.WriteFile(altPath, []byte(filepath.Join(relPath, "objects")), 0644)
}
+func (o *ObjectPool) getRelativeObjectPath(repo *gitalypb.Repository) (string, error) {
+ repoPath, err := helper.GetRepoPath(repo)
+ if err != nil {
+ return "", err
+ }
+
+ relPath, err := filepath.Rel(filepath.Join(repoPath, "objects"), o.FullPath())
+ if err != nil {
+ return "", err
+ }
+
+ return relPath, nil
+}
+
+// LinkedToRepository tests if a repository is linked to an object pool
+func (o *ObjectPool) LinkedToRepository(repo *gitalypb.Repository) (bool, error) {
+ altPath, err := git.AlternatesPath(repo)
+ if err != nil {
+ return false, err
+ }
+
+ relPath, err := o.getRelativeObjectPath(repo)
+ if err != nil {
+ return false, err
+ }
+
+ if stat, err := os.Stat(altPath); err == nil && stat.Size() > 0 {
+ alternatesFile, err := os.Open(altPath)
+ if err != nil {
+ return false, err
+ }
+ defer alternatesFile.Close()
+
+ r := bufio.NewReader(alternatesFile)
+
+ b, err := r.ReadBytes('\n')
+ if err != nil && err != io.EOF {
+ return false, fmt.Errorf("reading alternates file: %v", err)
+ }
+
+ return string(b) == filepath.Join(relPath, "objects"), nil
+ }
+
+ return false, nil
+}
+
// Unlink removes the alternates file, so Git won't look there anymore
// It removes the remote from the object pool too,
func (o *ObjectPool) Unlink(ctx context.Context, repo *gitalypb.Repository) error {
diff --git a/internal/git/objectpool/pool.go b/internal/git/objectpool/pool.go
index 824eb94ae..da04b4166 100644
--- a/internal/git/objectpool/pool.go
+++ b/internal/git/objectpool/pool.go
@@ -95,13 +95,3 @@ func (o *ObjectPool) Create(ctx context.Context, repo *gitalypb.Repository) (err
func (o *ObjectPool) Remove(ctx context.Context) (err error) {
return os.RemoveAll(o.FullPath())
}
-
-// ToProto returns a new struct that is the protobuf definition of the ObjectPool
-func (o *ObjectPool) ToProto() *gitalypb.ObjectPool {
- return &gitalypb.ObjectPool{
- Repository: &gitalypb.Repository{
- StorageName: o.GetStorageName(),
- RelativePath: o.GetRelativePath(),
- },
- }
-}
diff --git a/internal/git/objectpool/proto.go b/internal/git/objectpool/proto.go
new file mode 100644
index 000000000..0da62cb81
--- /dev/null
+++ b/internal/git/objectpool/proto.go
@@ -0,0 +1,18 @@
+package objectpool
+
+import "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
+
+// FromProto returns an object pool object from a git repository object
+func FromProto(o *gitalypb.ObjectPool) (*ObjectPool, error) {
+ return NewObjectPool(o.GetRepository().GetStorageName(), o.GetRepository().GetRelativePath())
+}
+
+// ToProto returns a new struct that is the protobuf definition of the ObjectPool
+func (o *ObjectPool) ToProto() *gitalypb.ObjectPool {
+ return &gitalypb.ObjectPool{
+ Repository: &gitalypb.Repository{
+ StorageName: o.GetStorageName(),
+ RelativePath: o.GetRelativePath(),
+ },
+ }
+}
diff --git a/internal/git/objectpool/test_helper.go b/internal/git/objectpool/test_helper.go
new file mode 100644
index 000000000..effa1c9c3
--- /dev/null
+++ b/internal/git/objectpool/test_helper.go
@@ -0,0 +1,19 @@
+package objectpool
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/require"
+ "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
+ "gitlab.com/gitlab-org/gitaly/internal/testhelper"
+)
+
+// NewTestObjectPool creates a new object pool
+func NewTestObjectPool(t *testing.T) (*ObjectPool, *gitalypb.Repository) {
+ repo, _, relativePath := testhelper.CreateRepo(t, testhelper.GitlabTestStoragePath())
+
+ pool, err := NewObjectPool("default", relativePath)
+ require.NoError(t, err)
+
+ return pool, repo
+}
diff --git a/internal/git/helper.go b/internal/git/proto.go
index 99e4629fe..99e4629fe 100644
--- a/internal/git/helper.go
+++ b/internal/git/proto.go
diff --git a/internal/helper/error.go b/internal/helper/error.go
index 738974760..c20a1690a 100644
--- a/internal/helper/error.go
+++ b/internal/helper/error.go
@@ -23,6 +23,9 @@ func ErrInternal(err error) error { return DecorateError(codes.Internal, err) }
// ErrInvalidArgument wrappes err with codes.InvalidArgument, unless err is already a grpc error
func ErrInvalidArgument(err error) error { return DecorateError(codes.InvalidArgument, err) }
+// ErrPreconditionFailed wraps error with codes.FailedPrecondition, unless err is already a grpc error
+func ErrPreconditionFailed(err error) error { return DecorateError(codes.FailedPrecondition, err) }
+
// GrpcCode emulates the old grpc.Code function: it translates errors into codes.Code values.
func GrpcCode(err error) codes.Code {
if err == nil {
diff --git a/internal/service/repository/pre_fetch.go b/internal/service/repository/pre_fetch.go
new file mode 100644
index 000000000..0c62b2eb5
--- /dev/null
+++ b/internal/service/repository/pre_fetch.go
@@ -0,0 +1,155 @@
+package repository
+
+import (
+ "context"
+ "errors"
+ "fmt"
+ "io/ioutil"
+ "os"
+ "path/filepath"
+
+ "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/helper"
+)
+
+func (s *server) PreFetch(ctx context.Context, req *gitalypb.PreFetchRequest) (*gitalypb.PreFetchResponse, error) {
+ if err := validatePreFetchRequest(req); err != nil {
+ return nil, helper.ErrInvalidArgument(err)
+ }
+
+ if err := validatePreFetchPrecondition(req); err != nil {
+ return nil, helper.ErrPreconditionFailed(err)
+ }
+
+ if err := preFetch(ctx, req); err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ return &gitalypb.PreFetchResponse{}, nil
+}
+
+func validatePreFetchRequest(req *gitalypb.PreFetchRequest) error {
+ if req.GetTargetRepository() == nil {
+ return errors.New("repository is empty")
+ }
+
+ if req.GetSourceRepository() == nil {
+ return errors.New("source repository is empty")
+ }
+
+ if req.GetSourceRepository().GetStorageName() != req.GetTargetRepository().GetStorageName() {
+ return errors.New("source repository and target repository are not on the same storage")
+ }
+
+ return nil
+}
+
+func validatePreFetchPrecondition(req *gitalypb.PreFetchRequest) error {
+ targetRepositoryFullPath, err := helper.GetPath(req.GetTargetRepository())
+ if err != nil {
+ return fmt.Errorf("getting target repository path: %v", err)
+ }
+
+ if _, err := os.Stat(targetRepositoryFullPath); !os.IsNotExist(err) {
+ return errors.New("target reopsitory already exists")
+ }
+
+ objectPool, err := objectpool.FromProto(req.GetObjectPool())
+ if err != nil {
+ return fmt.Errorf("getting object pool from repository: %v", err)
+ }
+
+ if !objectPool.Exists() {
+ return errors.New("object pool does not exist")
+ }
+
+ if !objectPool.IsValid() {
+ return errors.New("object pool is not valid")
+ }
+
+ linked, err := objectPool.LinkedToRepository(req.GetSourceRepository())
+ if err != nil {
+ return fmt.Errorf("error when testing if source repository is linked to pool repository: %v", err)
+ }
+
+ if !linked {
+ return errors.New("source repository is not linked to pool repository")
+ }
+
+ return nil
+}
+
+func preFetch(ctx context.Context, req *gitalypb.PreFetchRequest) error {
+ targetRepository, sourceRepository := req.GetTargetRepository(), req.GetSourceRepository()
+
+ sourceRepositoryFullPath, err := helper.GetPath(sourceRepository)
+ if err != nil {
+ return fmt.Errorf("getting source repository path: %v", err)
+ }
+
+ targetRepositoryFullPath, err := helper.GetPath(targetRepository)
+ if err != nil {
+ return fmt.Errorf("getting target repository path: %v", err)
+ }
+
+ targetPath, err := helper.GetPath(targetRepository)
+ if err != nil {
+ return fmt.Errorf("getting target repository path: %v", err)
+ }
+
+ dir := filepath.Dir(targetPath)
+
+ tmpRepoDir, err := ioutil.TempDir(dir, "repo")
+ if err != nil {
+ return fmt.Errorf("creating temp directory for repo: %v", err)
+ }
+ defer os.RemoveAll(tmpRepoDir)
+
+ storagePath, err := helper.GetStorageByName(targetRepository.GetStorageName())
+ if err != nil {
+ return fmt.Errorf("getting storage path for target repo: %v", err)
+ }
+
+ relativePath, err := filepath.Rel(storagePath, tmpRepoDir)
+ if err != nil {
+ return fmt.Errorf("getting relative path for temp repo: %v", err)
+ }
+
+ tmpRepo := &gitalypb.Repository{
+ RelativePath: relativePath,
+ StorageName: targetRepository.GetStorageName(),
+ }
+
+ args := []string{
+ "clone",
+ "--bare",
+ "--shared",
+ "--",
+ sourceRepositoryFullPath,
+ tmpRepoDir,
+ }
+
+ cmd, err := git.BareCommand(ctx, nil, nil, nil, nil, args...)
+ if err != nil {
+ return fmt.Errorf("clone command: %v", err)
+ }
+
+ if err := cmd.Wait(); err != nil {
+ return fmt.Errorf("clone command: %v", err)
+ }
+
+ objectPool, err := objectpool.FromProto(req.GetObjectPool())
+ if err != nil {
+ return fmt.Errorf("getting object pool: %v", err)
+ }
+
+ // As of 11.9, Link will still create remotes in the object pool. In this case the remotes will point to the tempoarary
+ // directory. This is OK because we don't plan on using these remotes, and will remove them in the future.
+ if err := objectPool.Link(ctx, tmpRepo); err != nil {
+ return fmt.Errorf("linking: %v", err)
+ }
+
+ return os.Rename(tmpRepoDir, targetRepositoryFullPath)
+}
diff --git a/internal/service/repository/pre_fetch_test.go b/internal/service/repository/pre_fetch_test.go
new file mode 100644
index 000000000..9f23bcf80
--- /dev/null
+++ b/internal/service/repository/pre_fetch_test.go
@@ -0,0 +1,187 @@
+package repository
+
+import (
+ "fmt"
+ "math/rand"
+ "os"
+ "path/filepath"
+ "strconv"
+ "strings"
+ "testing"
+ "time"
+
+ "google.golang.org/grpc/codes"
+
+ "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/objectpool"
+ "gitlab.com/gitlab-org/gitaly/internal/testhelper"
+)
+
+// getForkDestination creates a repo struct and path, but does not actually create the directory
+func getForkDestination(t *testing.T) (*gitalypb.Repository, string, func()) {
+ folder := fmt.Sprintf("%s_%s", t.Name(), strconv.Itoa(rand.New(rand.NewSource(time.Now().Unix())).Int()))
+ forkRepoPath := filepath.Join(testhelper.GitlabTestStoragePath(), folder)
+ forkedRepo := &gitalypb.Repository{StorageName: "default", RelativePath: folder, GlRepository: "project-1"}
+
+ return forkedRepo, forkRepoPath, func() { os.RemoveAll(forkRepoPath) }
+}
+
+// getGitObjectDirSize gets the number of 1k blocks of a git object directory
+func getGitObjectDirSize(t *testing.T, repoPath string) int64 {
+ output := testhelper.MustRunCommand(t, nil, "du", "-s", "-k", filepath.Join(repoPath, "objects"))
+ if len(output) < 2 {
+ t.Error("invalid output of du -s -k")
+ }
+
+ outputSplit := strings.SplitN(string(output), "\t", 2)
+ blocks, err := strconv.ParseInt(outputSplit[0], 10, 64)
+ require.NoError(t, err)
+
+ return blocks
+}
+
+func TestPreFetch(t *testing.T) {
+ server, serverSocketPath := runRepoServer(t)
+ defer server.Stop()
+
+ client, conn := newRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ testRepo, testRepoPath, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ pool, poolRepo := objectpool.NewTestObjectPool(t)
+ defer pool.Remove(ctx)
+
+ require.NoError(t, pool.Create(ctx, testRepo))
+ require.NoError(t, pool.Link(ctx, testRepo))
+
+ testhelper.MustRunCommand(t, nil, "git", "-C", testRepoPath, "gc")
+
+ forkedRepo, forkRepoPath, forkRepoCleanup := getForkDestination(t)
+ defer forkRepoCleanup()
+
+ req := &gitalypb.PreFetchRequest{
+ TargetRepository: forkedRepo,
+ SourceRepository: testRepo,
+ ObjectPool: &gitalypb.ObjectPool{
+ Repository: poolRepo,
+ },
+ }
+
+ _, err := client.PreFetch(ctx, req)
+ require.NoError(t, err)
+
+ assert.True(t, getGitObjectDirSize(t, forkRepoPath) < 40)
+
+ // feature is a branch known to exist in the source repository. By looking it up in the target
+ // we establish that the target has branches, even though (as we saw above) it has no objects.
+ testhelper.MustRunCommand(t, nil, "git", "-C", forkRepoPath, "show-ref", "feature")
+}
+
+func TestPreFetchValidationError(t *testing.T) {
+ server, serverSocketPath := runRepoServer(t)
+ defer server.Stop()
+
+ client, conn := newRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ pool, poolRepo := objectpool.NewTestObjectPool(t)
+ defer pool.Remove(ctx)
+
+ require.NoError(t, pool.Create(ctx, testRepo))
+ require.NoError(t, pool.Link(ctx, testRepo))
+
+ forkedRepo, _, forkRepoCleanup := getForkDestination(t)
+ defer forkRepoCleanup()
+
+ badPool, _, cleanupBadPool := testhelper.NewTestRepo(t)
+ defer cleanupBadPool()
+
+ badPool.RelativePath = "bad_path"
+
+ testCases := []struct {
+ description string
+ sourceRepo *gitalypb.Repository
+ targetRepo *gitalypb.Repository
+ objectPool *gitalypb.Repository
+ code codes.Code
+ }{
+ {
+ description: "source repository nil",
+ sourceRepo: nil,
+ targetRepo: forkedRepo,
+ objectPool: poolRepo,
+ code: codes.InvalidArgument,
+ },
+ {
+ description: "target repository nil",
+ sourceRepo: testRepo,
+ targetRepo: nil,
+ objectPool: poolRepo,
+ code: codes.InvalidArgument,
+ },
+ {
+ description: "source/target repository have different storage",
+ sourceRepo: testRepo,
+ targetRepo: &gitalypb.Repository{
+ StorageName: "specialstorage",
+ RelativePath: forkedRepo.RelativePath,
+ GlRepository: forkedRepo.GlRepository,
+ },
+ objectPool: poolRepo,
+ code: codes.InvalidArgument,
+ },
+ {
+ description: "bad pool repository",
+ sourceRepo: testRepo,
+ targetRepo: forkedRepo,
+ objectPool: badPool,
+ code: codes.FailedPrecondition,
+ },
+ }
+
+ for _, tc := range testCases {
+ t.Run(tc.description, func(t *testing.T) {
+ _, err := client.PreFetch(ctx, &gitalypb.PreFetchRequest{
+ TargetRepository: tc.targetRepo,
+ SourceRepository: tc.sourceRepo,
+ ObjectPool: &gitalypb.ObjectPool{
+ Repository: tc.objectPool,
+ },
+ })
+ testhelper.RequireGrpcError(t, err, tc.code)
+ })
+ }
+}
+
+func TestPreFetchDirectoryExists(t *testing.T) {
+ server, serverSocketPath := runRepoServer(t)
+ defer server.Stop()
+
+ client, conn := newRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ forkedRepo, _, forkRepoCleanup := testhelper.InitBareRepo(t)
+ defer forkRepoCleanup()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ _, err := client.PreFetch(ctx, &gitalypb.PreFetchRequest{TargetRepository: forkedRepo, SourceRepository: testRepo})
+ testhelper.RequireGrpcError(t, err, codes.FailedPrecondition)
+}
diff --git a/internal/testhelper/testhelper.go b/internal/testhelper/testhelper.go
index 2492ee833..bd1863181 100644
--- a/internal/testhelper/testhelper.go
+++ b/internal/testhelper/testhelper.go
@@ -349,7 +349,8 @@ func Context() (context.Context, func()) {
return context.WithCancel(context.Background())
}
-func createRepo(t *testing.T, storagePath string) (repo *gitalypb.Repository, repoPath, relativePath string) {
+// CreateRepo creates an temporary directory for a repo, without initializing it
+func CreateRepo(t *testing.T, storagePath string) (repo *gitalypb.Repository, repoPath, relativePath string) {
normalizedPrefix := strings.Replace(t.Name(), "/", "-", -1) //TempDir doesn't like a prefix containing slashes
repoPath, err := ioutil.TempDir(storagePath, normalizedPrefix)
@@ -372,7 +373,7 @@ func InitRepoWithWorktree(t *testing.T) (*gitalypb.Repository, string, func()) {
}
func initRepo(t *testing.T, bare bool) (*gitalypb.Repository, string, func()) {
- repo, repoPath, _ := createRepo(t, GitlabTestStoragePath())
+ repo, repoPath, _ := CreateRepo(t, GitlabTestStoragePath())
args := []string{"init"}
if bare {
args = append(args, "--bare")
@@ -400,7 +401,7 @@ func NewTestRepoWithWorktree(t *testing.T) (repo *gitalypb.Repository, repoPath
func cloneTestRepo(t *testing.T, bare bool) (repo *gitalypb.Repository, repoPath string, cleanup func()) {
storagePath := GitlabTestStoragePath()
- repo, repoPath, relativePath := createRepo(t, storagePath)
+ repo, repoPath, relativePath := CreateRepo(t, storagePath)
testRepo := TestRepository()
testRepoPath := path.Join(storagePath, testRepo.RelativePath)
args := []string{"clone", "--no-hardlinks", "--dissociate"}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/README.md b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/README.md
deleted file mode 100644
index 4776bf9f8..000000000
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-# Auto-generated Go gRPC bindings for gitaly
-
-This Go package is used both by the Gitaly server itself and by Go
-Gitaly clients (such as gitlab-workhorse).
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
deleted file mode 100644
index f14311864..000000000
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
+++ /dev/null
@@ -1 +0,0 @@
-0.118.1
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/objectpool.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/objectpool.pb.go
index a8b33e4ab..12e4adab5 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/objectpool.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/objectpool.pb.go
@@ -23,44 +23,6 @@ var _ = math.Inf
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
-type ObjectPool 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 *ObjectPool) Reset() { *m = ObjectPool{} }
-func (m *ObjectPool) String() string { return proto.CompactTextString(m) }
-func (*ObjectPool) ProtoMessage() {}
-func (*ObjectPool) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_68ee011b582d5b68, []int{0}
-}
-func (m *ObjectPool) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ObjectPool.Unmarshal(m, b)
-}
-func (m *ObjectPool) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ObjectPool.Marshal(b, m, deterministic)
-}
-func (dst *ObjectPool) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ObjectPool.Merge(dst, src)
-}
-func (m *ObjectPool) XXX_Size() int {
- return xxx_messageInfo_ObjectPool.Size(m)
-}
-func (m *ObjectPool) XXX_DiscardUnknown() {
- xxx_messageInfo_ObjectPool.DiscardUnknown(m)
-}
-
-var xxx_messageInfo_ObjectPool proto.InternalMessageInfo
-
-func (m *ObjectPool) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
// Creates an object pool from the repository. The client is responsible for
// joining this pool later with this repository.
type CreateObjectPoolRequest struct {
@@ -75,7 +37,7 @@ func (m *CreateObjectPoolRequest) Reset() { *m = CreateObjectPoolRequest
func (m *CreateObjectPoolRequest) String() string { return proto.CompactTextString(m) }
func (*CreateObjectPoolRequest) ProtoMessage() {}
func (*CreateObjectPoolRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_68ee011b582d5b68, []int{1}
+ return fileDescriptor_objectpool_ab2e688e2665ce1f, []int{0}
}
func (m *CreateObjectPoolRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateObjectPoolRequest.Unmarshal(m, b)
@@ -119,7 +81,7 @@ func (m *CreateObjectPoolResponse) Reset() { *m = CreateObjectPoolRespon
func (m *CreateObjectPoolResponse) String() string { return proto.CompactTextString(m) }
func (*CreateObjectPoolResponse) ProtoMessage() {}
func (*CreateObjectPoolResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_68ee011b582d5b68, []int{2}
+ return fileDescriptor_objectpool_ab2e688e2665ce1f, []int{1}
}
func (m *CreateObjectPoolResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateObjectPoolResponse.Unmarshal(m, b)
@@ -152,7 +114,7 @@ func (m *DeleteObjectPoolRequest) Reset() { *m = DeleteObjectPoolRequest
func (m *DeleteObjectPoolRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteObjectPoolRequest) ProtoMessage() {}
func (*DeleteObjectPoolRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_68ee011b582d5b68, []int{3}
+ return fileDescriptor_objectpool_ab2e688e2665ce1f, []int{2}
}
func (m *DeleteObjectPoolRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteObjectPoolRequest.Unmarshal(m, b)
@@ -189,7 +151,7 @@ func (m *DeleteObjectPoolResponse) Reset() { *m = DeleteObjectPoolRespon
func (m *DeleteObjectPoolResponse) String() string { return proto.CompactTextString(m) }
func (*DeleteObjectPoolResponse) ProtoMessage() {}
func (*DeleteObjectPoolResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_68ee011b582d5b68, []int{4}
+ return fileDescriptor_objectpool_ab2e688e2665ce1f, []int{3}
}
func (m *DeleteObjectPoolResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteObjectPoolResponse.Unmarshal(m, b)
@@ -221,7 +183,7 @@ func (m *LinkRepositoryToObjectPoolRequest) Reset() { *m = LinkRepositor
func (m *LinkRepositoryToObjectPoolRequest) String() string { return proto.CompactTextString(m) }
func (*LinkRepositoryToObjectPoolRequest) ProtoMessage() {}
func (*LinkRepositoryToObjectPoolRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_68ee011b582d5b68, []int{5}
+ return fileDescriptor_objectpool_ab2e688e2665ce1f, []int{4}
}
func (m *LinkRepositoryToObjectPoolRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LinkRepositoryToObjectPoolRequest.Unmarshal(m, b)
@@ -265,7 +227,7 @@ func (m *LinkRepositoryToObjectPoolResponse) Reset() { *m = LinkReposito
func (m *LinkRepositoryToObjectPoolResponse) String() string { return proto.CompactTextString(m) }
func (*LinkRepositoryToObjectPoolResponse) ProtoMessage() {}
func (*LinkRepositoryToObjectPoolResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_68ee011b582d5b68, []int{6}
+ return fileDescriptor_objectpool_ab2e688e2665ce1f, []int{5}
}
func (m *LinkRepositoryToObjectPoolResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LinkRepositoryToObjectPoolResponse.Unmarshal(m, b)
@@ -299,7 +261,7 @@ func (m *UnlinkRepositoryFromObjectPoolRequest) Reset() { *m = UnlinkRep
func (m *UnlinkRepositoryFromObjectPoolRequest) String() string { return proto.CompactTextString(m) }
func (*UnlinkRepositoryFromObjectPoolRequest) ProtoMessage() {}
func (*UnlinkRepositoryFromObjectPoolRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_68ee011b582d5b68, []int{7}
+ return fileDescriptor_objectpool_ab2e688e2665ce1f, []int{6}
}
func (m *UnlinkRepositoryFromObjectPoolRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UnlinkRepositoryFromObjectPoolRequest.Unmarshal(m, b)
@@ -345,7 +307,7 @@ func (m *UnlinkRepositoryFromObjectPoolResponse) Reset() {
func (m *UnlinkRepositoryFromObjectPoolResponse) String() string { return proto.CompactTextString(m) }
func (*UnlinkRepositoryFromObjectPoolResponse) ProtoMessage() {}
func (*UnlinkRepositoryFromObjectPoolResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_68ee011b582d5b68, []int{8}
+ return fileDescriptor_objectpool_ab2e688e2665ce1f, []int{7}
}
func (m *UnlinkRepositoryFromObjectPoolResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UnlinkRepositoryFromObjectPoolResponse.Unmarshal(m, b)
@@ -376,7 +338,7 @@ func (m *ReduplicateRepositoryRequest) Reset() { *m = ReduplicateReposit
func (m *ReduplicateRepositoryRequest) String() string { return proto.CompactTextString(m) }
func (*ReduplicateRepositoryRequest) ProtoMessage() {}
func (*ReduplicateRepositoryRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_68ee011b582d5b68, []int{9}
+ return fileDescriptor_objectpool_ab2e688e2665ce1f, []int{8}
}
func (m *ReduplicateRepositoryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReduplicateRepositoryRequest.Unmarshal(m, b)
@@ -413,7 +375,7 @@ func (m *ReduplicateRepositoryResponse) Reset() { *m = ReduplicateReposi
func (m *ReduplicateRepositoryResponse) String() string { return proto.CompactTextString(m) }
func (*ReduplicateRepositoryResponse) ProtoMessage() {}
func (*ReduplicateRepositoryResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_68ee011b582d5b68, []int{10}
+ return fileDescriptor_objectpool_ab2e688e2665ce1f, []int{9}
}
func (m *ReduplicateRepositoryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReduplicateRepositoryResponse.Unmarshal(m, b)
@@ -434,7 +396,6 @@ func (m *ReduplicateRepositoryResponse) XXX_DiscardUnknown() {
var xxx_messageInfo_ReduplicateRepositoryResponse proto.InternalMessageInfo
func init() {
- proto.RegisterType((*ObjectPool)(nil), "gitaly.ObjectPool")
proto.RegisterType((*CreateObjectPoolRequest)(nil), "gitaly.CreateObjectPoolRequest")
proto.RegisterType((*CreateObjectPoolResponse)(nil), "gitaly.CreateObjectPoolResponse")
proto.RegisterType((*DeleteObjectPoolRequest)(nil), "gitaly.DeleteObjectPoolRequest")
@@ -653,32 +614,31 @@ var _ObjectPoolService_serviceDesc = grpc.ServiceDesc{
Metadata: "objectpool.proto",
}
-func init() { proto.RegisterFile("objectpool.proto", fileDescriptor_objectpool_68ee011b582d5b68) }
-
-var fileDescriptor_objectpool_68ee011b582d5b68 = []byte{
- // 377 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0x41, 0x4f, 0xc2, 0x40,
- 0x10, 0x85, 0x29, 0x31, 0x1c, 0x06, 0x0f, 0xb8, 0x89, 0x81, 0x34, 0x2a, 0xd8, 0x80, 0x41, 0x12,
- 0x7b, 0x80, 0x3f, 0x60, 0xa2, 0xf1, 0x64, 0xd4, 0x54, 0x8d, 0x47, 0x53, 0x60, 0xc4, 0xd5, 0xda,
- 0xa9, 0xdb, 0xc5, 0x04, 0x6f, 0xde, 0x3d, 0xf8, 0x33, 0xfc, 0x99, 0x06, 0xda, 0xb2, 0x50, 0x5c,
- 0x68, 0x08, 0xd7, 0xf6, 0xf5, 0xbd, 0x6f, 0x67, 0x5e, 0x17, 0x4a, 0xd4, 0x7d, 0xc1, 0x9e, 0x0c,
- 0x88, 0x3c, 0x3b, 0x10, 0x24, 0x89, 0x15, 0x06, 0x5c, 0xba, 0xde, 0xc8, 0xdc, 0x0e, 0x9f, 0x5d,
- 0x81, 0xfd, 0xe8, 0xa9, 0x75, 0x0a, 0x70, 0x3d, 0x51, 0xde, 0x10, 0x79, 0xac, 0x0d, 0x20, 0x30,
- 0xa0, 0x90, 0x4b, 0x12, 0xa3, 0x8a, 0x51, 0x33, 0x9a, 0xc5, 0x36, 0xb3, 0xa3, 0x0f, 0x6d, 0x67,
- 0xfa, 0xc6, 0x99, 0x51, 0x59, 0x9f, 0x50, 0x3e, 0x13, 0xe8, 0x4a, 0x54, 0x3e, 0x0e, 0xbe, 0x0f,
- 0x31, 0x94, 0xac, 0x03, 0xc5, 0x08, 0xe3, 0x71, 0xcc, 0x91, 0xf6, 0x9b, 0xd1, 0x03, 0x29, 0x86,
- 0x16, 0x14, 0x48, 0xf0, 0x01, 0xf7, 0x2b, 0x79, 0x6d, 0x7e, 0xac, 0xb0, 0x4c, 0xa8, 0x2c, 0x66,
- 0x87, 0x01, 0xf9, 0x21, 0x5a, 0x57, 0x50, 0x3e, 0x47, 0x0f, 0x37, 0xc5, 0x35, 0xce, 0x5a, 0xf4,
- 0x8b, 0xb3, 0xbe, 0x0d, 0x38, 0xbc, 0xe4, 0xfe, 0xab, 0x42, 0xbc, 0xa3, 0x0d, 0x8d, 0x63, 0x7e,
- 0x25, 0xf9, 0x4c, 0x2b, 0xa9, 0x83, 0xb5, 0x8c, 0x26, 0x86, 0xfe, 0x31, 0xa0, 0x71, 0xef, 0x7b,
- 0x73, 0xc2, 0x0b, 0x41, 0x6f, 0x8b, 0xe0, 0x6b, 0xd4, 0x22, 0x7d, 0xd8, 0x7c, 0xa6, 0x19, 0x37,
- 0xe1, 0x68, 0x15, 0x51, 0x0c, 0xef, 0xc0, 0x9e, 0x83, 0xfd, 0x61, 0xe0, 0xf1, 0x9e, 0x2b, 0x71,
- 0x86, 0x61, 0x7d, 0x64, 0xab, 0x0a, 0xfb, 0x1a, 0xcf, 0x28, 0xb4, 0xfd, 0xbb, 0x05, 0x3b, 0x8a,
- 0xe5, 0x16, 0xc5, 0x07, 0xef, 0x21, 0x7b, 0x80, 0x52, 0xba, 0x84, 0xac, 0x9a, 0x44, 0x69, 0x7e,
- 0x0d, 0xb3, 0xa6, 0x17, 0xc4, 0x27, 0xcc, 0x8d, 0x8d, 0xd3, 0x8d, 0x53, 0xc6, 0x9a, 0x6e, 0x2b,
- 0x63, 0x6d, 0x59, 0x73, 0x6c, 0x08, 0xa6, 0xbe, 0x1f, 0xec, 0x38, 0x71, 0x58, 0xd9, 0x68, 0xb3,
- 0x95, 0x45, 0x3a, 0x8d, 0xfd, 0x32, 0xe0, 0x60, 0xf9, 0x7a, 0xd9, 0x49, 0x62, 0x98, 0xa9, 0x98,
- 0xa6, 0x9d, 0x55, 0x3e, 0x65, 0x78, 0x82, 0xdd, 0x7f, 0x77, 0xcc, 0xea, 0xaa, 0x1c, 0xfa, 0x5a,
- 0x99, 0x8d, 0x15, 0xaa, 0x24, 0xa7, 0x5b, 0x98, 0x5c, 0xaf, 0x9d, 0xbf, 0x00, 0x00, 0x00, 0xff,
- 0xff, 0x9b, 0x40, 0xdd, 0xa1, 0x88, 0x05, 0x00, 0x00,
+func init() { proto.RegisterFile("objectpool.proto", fileDescriptor_objectpool_ab2e688e2665ce1f) }
+
+var fileDescriptor_objectpool_ab2e688e2665ce1f = []byte{
+ // 368 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0xcd, 0x4e, 0xc2, 0x40,
+ 0x14, 0x85, 0x29, 0x31, 0x2c, 0x2e, 0x2e, 0x70, 0x12, 0x03, 0x99, 0xa8, 0x60, 0x03, 0x06, 0x49,
+ 0xec, 0x02, 0x1e, 0x41, 0xe3, 0xca, 0xa8, 0xa9, 0x1a, 0x97, 0xa6, 0xc0, 0x15, 0x47, 0x6b, 0x6f,
+ 0x9d, 0x0e, 0x26, 0xb8, 0x73, 0xef, 0xc2, 0xc7, 0xf0, 0x31, 0x0d, 0xf4, 0x8f, 0x1f, 0x87, 0x36,
+ 0x86, 0x1d, 0x21, 0x27, 0xdf, 0xf9, 0x66, 0xe6, 0x00, 0x54, 0xa8, 0xff, 0x8c, 0x03, 0xe5, 0x13,
+ 0xb9, 0x96, 0x2f, 0x49, 0x11, 0x2b, 0x8d, 0x84, 0x72, 0xdc, 0x09, 0xdf, 0x0e, 0x9e, 0x1c, 0x89,
+ 0xc3, 0xf0, 0x5b, 0xf3, 0x03, 0xaa, 0xa7, 0x12, 0x1d, 0x85, 0x57, 0xb3, 0xfc, 0x35, 0x91, 0x6b,
+ 0xe3, 0xdb, 0x18, 0x03, 0xc5, 0x7a, 0x50, 0x0e, 0x21, 0x0f, 0x53, 0x4a, 0xcd, 0x68, 0x18, 0xed,
+ 0x72, 0x97, 0x59, 0x21, 0xc6, 0x9a, 0xcb, 0x03, 0x25, 0x9f, 0x59, 0x07, 0x4a, 0x24, 0xc5, 0x48,
+ 0x78, 0xb5, 0xe2, 0x62, 0xde, 0x46, 0x9f, 0x02, 0xa1, 0x48, 0x4e, 0xec, 0x28, 0x61, 0x72, 0xa8,
+ 0xad, 0x76, 0x07, 0x3e, 0x79, 0x01, 0x9a, 0x97, 0x50, 0x3d, 0x43, 0x17, 0x37, 0xe5, 0x35, 0xed,
+ 0x5a, 0xe5, 0x45, 0x5d, 0x5f, 0x06, 0x1c, 0x5e, 0x08, 0xef, 0x25, 0x55, 0xbc, 0xa5, 0x0d, 0x5d,
+ 0x47, 0x17, 0x40, 0x26, 0xd4, 0x35, 0x57, 0x32, 0x97, 0x32, 0x9b, 0x60, 0xae, 0xb3, 0x89, 0xa4,
+ 0xbf, 0x0d, 0x68, 0xdd, 0x79, 0xee, 0x42, 0xf0, 0x5c, 0xd2, 0xeb, 0xaa, 0xf8, 0xa2, 0x83, 0x91,
+ 0xc7, 0x61, 0xf9, 0xb0, 0xc5, 0x5c, 0x77, 0xdc, 0x86, 0xa3, 0x2c, 0xa3, 0x48, 0xde, 0x86, 0x3d,
+ 0x1b, 0x87, 0x63, 0xdf, 0x15, 0x03, 0x47, 0xe1, 0x9c, 0xc3, 0xff, 0x95, 0xcd, 0x3a, 0xec, 0x6b,
+ 0x98, 0x61, 0x69, 0xf7, 0x67, 0x0b, 0x76, 0x52, 0x97, 0x1b, 0x94, 0xef, 0x62, 0x80, 0xec, 0x1e,
+ 0x2a, 0xcb, 0x23, 0x64, 0xf5, 0xb8, 0x4a, 0xf3, 0xd3, 0xe0, 0x0d, 0x7d, 0x20, 0x3a, 0x61, 0x61,
+ 0x0a, 0x5e, 0x5e, 0x5c, 0x0a, 0xd6, 0x6c, 0x3b, 0x05, 0x6b, 0xc7, 0x5a, 0x60, 0x63, 0xe0, 0xfa,
+ 0x7d, 0xb0, 0xe3, 0x98, 0x90, 0xb9, 0x68, 0xde, 0xc9, 0x13, 0x4d, 0x6a, 0x3f, 0x0d, 0x38, 0x58,
+ 0xff, 0xbc, 0xec, 0x24, 0x06, 0xe6, 0x1a, 0x26, 0xb7, 0xf2, 0xc6, 0x13, 0x87, 0x47, 0xd8, 0xfd,
+ 0xf3, 0x8d, 0x59, 0x33, 0x1d, 0x87, 0x7e, 0x56, 0xbc, 0x95, 0x91, 0x8a, 0x7b, 0xfa, 0xa5, 0xd9,
+ 0x9f, 0x63, 0xef, 0x37, 0x00, 0x00, 0xff, 0xff, 0xc1, 0xa5, 0x91, 0xe0, 0x46, 0x05, 0x00, 0x00,
}
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 ab68f6650..12f49f537 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_66c8cbe78ed9256e, []int{18, 0}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{63, 0, 0}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{0}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{1}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{2}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{3}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{4}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{5}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{6}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{7}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{8}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{9}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{10}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{11}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{12}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{13}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{14}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{15}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{16}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []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_66c8cbe78ed9256e, []int{17}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{17}
}
func (m *CreateRepositoryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryResponse.Unmarshal(m, b)
@@ -813,7 +813,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_66c8cbe78ed9256e, []int{18}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{18}
}
func (m *GetArchiveRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetArchiveRequest.Unmarshal(m, b)
@@ -872,7 +872,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_66c8cbe78ed9256e, []int{19}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{19}
}
func (m *GetArchiveResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetArchiveResponse.Unmarshal(m, b)
@@ -910,7 +910,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_66c8cbe78ed9256e, []int{20}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{20}
}
func (m *HasLocalBranchesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HasLocalBranchesRequest.Unmarshal(m, b)
@@ -948,7 +948,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_66c8cbe78ed9256e, []int{21}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{21}
}
func (m *HasLocalBranchesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HasLocalBranchesResponse.Unmarshal(m, b)
@@ -989,7 +989,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_66c8cbe78ed9256e, []int{22}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{22}
}
func (m *FetchSourceBranchRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchSourceBranchRequest.Unmarshal(m, b)
@@ -1048,7 +1048,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_66c8cbe78ed9256e, []int{23}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{23}
}
func (m *FetchSourceBranchResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchSourceBranchResponse.Unmarshal(m, b)
@@ -1086,7 +1086,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_66c8cbe78ed9256e, []int{24}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{24}
}
func (m *FsckRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FsckRequest.Unmarshal(m, b)
@@ -1124,7 +1124,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_66c8cbe78ed9256e, []int{25}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{25}
}
func (m *FsckResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FsckResponse.Unmarshal(m, b)
@@ -1166,7 +1166,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_66c8cbe78ed9256e, []int{26}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{26}
}
func (m *WriteRefRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteRefRequest.Unmarshal(m, b)
@@ -1231,7 +1231,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_66c8cbe78ed9256e, []int{27}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{27}
}
func (m *WriteRefResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteRefResponse.Unmarshal(m, b)
@@ -1266,7 +1266,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_66c8cbe78ed9256e, []int{28}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{28}
}
func (m *FindMergeBaseRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindMergeBaseRequest.Unmarshal(m, b)
@@ -1311,7 +1311,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_66c8cbe78ed9256e, []int{29}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{29}
}
func (m *FindMergeBaseResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindMergeBaseResponse.Unmarshal(m, b)
@@ -1350,7 +1350,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_66c8cbe78ed9256e, []int{30}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{30}
}
func (m *CreateForkRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateForkRequest.Unmarshal(m, b)
@@ -1394,7 +1394,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_66c8cbe78ed9256e, []int{31}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{31}
}
func (m *CreateForkResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateForkResponse.Unmarshal(m, b)
@@ -1426,7 +1426,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_66c8cbe78ed9256e, []int{32}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{32}
}
func (m *IsRebaseInProgressRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsRebaseInProgressRequest.Unmarshal(m, b)
@@ -1471,7 +1471,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_66c8cbe78ed9256e, []int{33}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{33}
}
func (m *IsRebaseInProgressResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsRebaseInProgressResponse.Unmarshal(m, b)
@@ -1510,7 +1510,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_66c8cbe78ed9256e, []int{34}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{34}
}
func (m *IsSquashInProgressRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsSquashInProgressRequest.Unmarshal(m, b)
@@ -1555,7 +1555,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_66c8cbe78ed9256e, []int{35}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{35}
}
func (m *IsSquashInProgressResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsSquashInProgressResponse.Unmarshal(m, b)
@@ -1594,7 +1594,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_66c8cbe78ed9256e, []int{36}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{36}
}
func (m *CreateRepositoryFromURLRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromURLRequest.Unmarshal(m, b)
@@ -1638,7 +1638,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_66c8cbe78ed9256e, []int{37}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{37}
}
func (m *CreateRepositoryFromURLResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromURLResponse.Unmarshal(m, b)
@@ -1669,7 +1669,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_66c8cbe78ed9256e, []int{38}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{38}
}
func (m *CreateBundleRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateBundleRequest.Unmarshal(m, b)
@@ -1707,7 +1707,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_66c8cbe78ed9256e, []int{39}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{39}
}
func (m *CreateBundleResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateBundleResponse.Unmarshal(m, b)
@@ -1746,7 +1746,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_66c8cbe78ed9256e, []int{40}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{40}
}
func (m *WriteConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteConfigRequest.Unmarshal(m, b)
@@ -1791,7 +1791,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_66c8cbe78ed9256e, []int{41}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{41}
}
func (m *WriteConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteConfigResponse.Unmarshal(m, b)
@@ -1830,7 +1830,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_66c8cbe78ed9256e, []int{42}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{42}
}
func (m *SetConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigRequest.Unmarshal(m, b)
@@ -1880,7 +1880,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_66c8cbe78ed9256e, []int{42, 0}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{42, 0}
}
func (m *SetConfigRequest_Entry) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigRequest_Entry.Unmarshal(m, b)
@@ -2050,7 +2050,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_66c8cbe78ed9256e, []int{43}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{43}
}
func (m *SetConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigResponse.Unmarshal(m, b)
@@ -2082,7 +2082,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_66c8cbe78ed9256e, []int{44}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{44}
}
func (m *DeleteConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteConfigRequest.Unmarshal(m, b)
@@ -2126,7 +2126,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_66c8cbe78ed9256e, []int{45}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{45}
}
func (m *DeleteConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteConfigResponse.Unmarshal(m, b)
@@ -2158,7 +2158,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_66c8cbe78ed9256e, []int{46}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{46}
}
func (m *RestoreCustomHooksRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RestoreCustomHooksRequest.Unmarshal(m, b)
@@ -2202,7 +2202,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_66c8cbe78ed9256e, []int{47}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{47}
}
func (m *RestoreCustomHooksResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RestoreCustomHooksResponse.Unmarshal(m, b)
@@ -2233,7 +2233,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_66c8cbe78ed9256e, []int{48}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{48}
}
func (m *BackupCustomHooksRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BackupCustomHooksRequest.Unmarshal(m, b)
@@ -2271,7 +2271,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_66c8cbe78ed9256e, []int{49}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{49}
}
func (m *BackupCustomHooksResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BackupCustomHooksResponse.Unmarshal(m, b)
@@ -2311,7 +2311,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_66c8cbe78ed9256e, []int{50}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{50}
}
func (m *CreateRepositoryFromBundleRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromBundleRequest.Unmarshal(m, b)
@@ -2355,7 +2355,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_66c8cbe78ed9256e, []int{51}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{51}
}
func (m *CreateRepositoryFromBundleResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromBundleResponse.Unmarshal(m, b)
@@ -2386,7 +2386,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_66c8cbe78ed9256e, []int{52}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{52}
}
func (m *FindLicenseRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindLicenseRequest.Unmarshal(m, b)
@@ -2424,7 +2424,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_66c8cbe78ed9256e, []int{53}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{53}
}
func (m *FindLicenseResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindLicenseResponse.Unmarshal(m, b)
@@ -2462,7 +2462,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_66c8cbe78ed9256e, []int{54}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{54}
}
func (m *GetInfoAttributesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetInfoAttributesRequest.Unmarshal(m, b)
@@ -2500,7 +2500,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_66c8cbe78ed9256e, []int{55}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{55}
}
func (m *GetInfoAttributesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetInfoAttributesResponse.Unmarshal(m, b)
@@ -2538,7 +2538,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_66c8cbe78ed9256e, []int{56}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{56}
}
func (m *CalculateChecksumRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CalculateChecksumRequest.Unmarshal(m, b)
@@ -2576,7 +2576,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_66c8cbe78ed9256e, []int{57}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{57}
}
func (m *CalculateChecksumResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CalculateChecksumResponse.Unmarshal(m, b)
@@ -2614,7 +2614,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_66c8cbe78ed9256e, []int{58}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{58}
}
func (m *GetSnapshotRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetSnapshotRequest.Unmarshal(m, b)
@@ -2652,7 +2652,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_66c8cbe78ed9256e, []int{59}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{59}
}
func (m *GetSnapshotResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetSnapshotResponse.Unmarshal(m, b)
@@ -2692,7 +2692,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_66c8cbe78ed9256e, []int{60}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{60}
}
func (m *CreateRepositoryFromSnapshotRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromSnapshotRequest.Unmarshal(m, b)
@@ -2743,7 +2743,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_66c8cbe78ed9256e, []int{61}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{61}
}
func (m *CreateRepositoryFromSnapshotResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromSnapshotResponse.Unmarshal(m, b)
@@ -2776,7 +2776,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_66c8cbe78ed9256e, []int{62}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{62}
}
func (m *GetRawChangesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesRequest.Unmarshal(m, b)
@@ -2828,7 +2828,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_66c8cbe78ed9256e, []int{63}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{63}
}
func (m *GetRawChangesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesResponse.Unmarshal(m, b)
@@ -2873,7 +2873,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_66c8cbe78ed9256e, []int{63, 0}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{63, 0}
}
func (m *GetRawChangesResponse_RawChange) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesResponse_RawChange.Unmarshal(m, b)
@@ -2962,7 +2962,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_66c8cbe78ed9256e, []int{64}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{64}
}
func (m *SearchFilesByNameRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByNameRequest.Unmarshal(m, b)
@@ -3014,7 +3014,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_66c8cbe78ed9256e, []int{65}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{65}
}
func (m *SearchFilesByNameResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByNameResponse.Unmarshal(m, b)
@@ -3055,7 +3055,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_66c8cbe78ed9256e, []int{66}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{66}
}
func (m *SearchFilesByContentRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByContentRequest.Unmarshal(m, b)
@@ -3116,7 +3116,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_66c8cbe78ed9256e, []int{67}
+ return fileDescriptor_repository_service_e78248130d6ea2d6, []int{67}
}
func (m *SearchFilesByContentResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByContentResponse.Unmarshal(m, b)
@@ -3157,6 +3157,90 @@ func (m *SearchFilesByContentResponse) GetEndOfMatch() bool {
return false
}
+type PreFetchRequest struct {
+ SourceRepository *Repository `protobuf:"bytes,1,opt,name=source_repository,json=sourceRepository,proto3" json:"source_repository,omitempty"`
+ TargetRepository *Repository `protobuf:"bytes,2,opt,name=target_repository,json=targetRepository,proto3" json:"target_repository,omitempty"`
+ ObjectPool *ObjectPool `protobuf:"bytes,3,opt,name=object_pool,json=objectPool,proto3" json:"object_pool,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+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_e78248130d6ea2d6, []int{68}
+}
+func (m *PreFetchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PreFetchRequest.Unmarshal(m, b)
+}
+func (m *PreFetchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PreFetchRequest.Marshal(b, m, deterministic)
+}
+func (dst *PreFetchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PreFetchRequest.Merge(dst, src)
+}
+func (m *PreFetchRequest) XXX_Size() int {
+ return xxx_messageInfo_PreFetchRequest.Size(m)
+}
+func (m *PreFetchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_PreFetchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PreFetchRequest proto.InternalMessageInfo
+
+func (m *PreFetchRequest) GetSourceRepository() *Repository {
+ if m != nil {
+ return m.SourceRepository
+ }
+ return nil
+}
+
+func (m *PreFetchRequest) GetTargetRepository() *Repository {
+ if m != nil {
+ return m.TargetRepository
+ }
+ return nil
+}
+
+func (m *PreFetchRequest) GetObjectPool() *ObjectPool {
+ if m != nil {
+ return m.ObjectPool
+ }
+ return nil
+}
+
+type PreFetchResponse struct {
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+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_e78248130d6ea2d6, []int{69}
+}
+func (m *PreFetchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PreFetchResponse.Unmarshal(m, b)
+}
+func (m *PreFetchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PreFetchResponse.Marshal(b, m, deterministic)
+}
+func (dst *PreFetchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PreFetchResponse.Merge(dst, src)
+}
+func (m *PreFetchResponse) XXX_Size() int {
+ return xxx_messageInfo_PreFetchResponse.Size(m)
+}
+func (m *PreFetchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_PreFetchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PreFetchResponse proto.InternalMessageInfo
+
func init() {
proto.RegisterType((*RepositoryExistsRequest)(nil), "gitaly.RepositoryExistsRequest")
proto.RegisterType((*RepositoryExistsResponse)(nil), "gitaly.RepositoryExistsResponse")
@@ -3228,6 +3312,8 @@ func init() {
proto.RegisterType((*SearchFilesByNameResponse)(nil), "gitaly.SearchFilesByNameResponse")
proto.RegisterType((*SearchFilesByContentRequest)(nil), "gitaly.SearchFilesByContentRequest")
proto.RegisterType((*SearchFilesByContentResponse)(nil), "gitaly.SearchFilesByContentResponse")
+ proto.RegisterType((*PreFetchRequest)(nil), "gitaly.PreFetchRequest")
+ proto.RegisterType((*PreFetchResponse)(nil), "gitaly.PreFetchResponse")
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)
}
@@ -3278,6 +3364,7 @@ type RepositoryServiceClient interface {
SearchFilesByName(ctx context.Context, in *SearchFilesByNameRequest, opts ...grpc.CallOption) (RepositoryService_SearchFilesByNameClient, error)
RestoreCustomHooks(ctx context.Context, opts ...grpc.CallOption) (RepositoryService_RestoreCustomHooksClient, error)
BackupCustomHooks(ctx context.Context, in *BackupCustomHooksRequest, opts ...grpc.CallOption) (RepositoryService_BackupCustomHooksClient, error)
+ PreFetch(ctx context.Context, in *PreFetchRequest, opts ...grpc.CallOption) (*PreFetchResponse, error)
}
type repositoryServiceClient struct {
@@ -3828,6 +3915,15 @@ func (x *repositoryServiceBackupCustomHooksClient) Recv() (*BackupCustomHooksRes
return m, nil
}
+func (c *repositoryServiceClient) PreFetch(ctx context.Context, in *PreFetchRequest, opts ...grpc.CallOption) (*PreFetchResponse, error) {
+ out := new(PreFetchResponse)
+ err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/PreFetch", 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)
@@ -3864,6 +3960,7 @@ type RepositoryServiceServer interface {
SearchFilesByName(*SearchFilesByNameRequest, RepositoryService_SearchFilesByNameServer) error
RestoreCustomHooks(RepositoryService_RestoreCustomHooksServer) error
BackupCustomHooks(*BackupCustomHooksRequest, RepositoryService_BackupCustomHooksServer) error
+ PreFetch(context.Context, *PreFetchRequest) (*PreFetchResponse, error)
}
func RegisterRepositoryServiceServer(s *grpc.Server, srv RepositoryServiceServer) {
@@ -4522,6 +4619,24 @@ func (x *repositoryServiceBackupCustomHooksServer) Send(m *BackupCustomHooksResp
return x.ServerStream.SendMsg(m)
}
+func _RepositoryService_PreFetch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(PreFetchRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(RepositoryServiceServer).PreFetch(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.RepositoryService/PreFetch",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(RepositoryServiceServer).PreFetch(ctx, req.(*PreFetchRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _RepositoryService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.RepositoryService",
HandlerType: (*RepositoryServiceServer)(nil),
@@ -4622,6 +4737,10 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
MethodName: "CreateRepositoryFromSnapshot",
Handler: _RepositoryService_CreateRepositoryFromSnapshot_Handler,
},
+ {
+ MethodName: "PreFetch",
+ Handler: _RepositoryService_PreFetch_Handler,
+ },
},
Streams: []grpc.StreamDesc{
{
@@ -4679,161 +4798,166 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
}
func init() {
- proto.RegisterFile("repository-service.proto", fileDescriptor_repository_service_66c8cbe78ed9256e)
-}
-
-var fileDescriptor_repository_service_66c8cbe78ed9256e = []byte{
- // 2419 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xef, 0x6e, 0xdb, 0xc8,
- 0x11, 0x97, 0x6c, 0xcb, 0x92, 0x46, 0x4a, 0x22, 0xaf, 0x1d, 0x47, 0x66, 0x9c, 0xd8, 0x61, 0x82,
- 0xbb, 0xe4, 0x92, 0xba, 0x77, 0xce, 0x87, 0x1e, 0xd0, 0x16, 0x07, 0x5b, 0x92, 0x6d, 0x25, 0xf1,
- 0x9f, 0xd2, 0x09, 0x82, 0x06, 0x17, 0x10, 0x34, 0xb5, 0xb2, 0x08, 0x51, 0x5c, 0x65, 0xb9, 0x8a,
- 0xcf, 0xd7, 0xaf, 0x3d, 0xe0, 0x3e, 0xb6, 0xef, 0xd0, 0x27, 0xe8, 0xab, 0xf4, 0x29, 0x8a, 0x7e,
- 0xe9, 0x23, 0x14, 0xbb, 0x4b, 0x71, 0x49, 0x91, 0x54, 0x03, 0x30, 0xed, 0x7d, 0xe3, 0xce, 0xec,
- 0xce, 0xcc, 0xce, 0xcc, 0xce, 0xee, 0xfc, 0x24, 0x68, 0x52, 0x3c, 0x26, 0xbe, 0xc3, 0x08, 0xbd,
- 0xfe, 0x95, 0x8f, 0xe9, 0x47, 0xc7, 0xc6, 0x3b, 0x63, 0x4a, 0x18, 0x41, 0xcb, 0x97, 0x0e, 0xb3,
- 0xdc, 0x6b, 0xad, 0xee, 0x0f, 0x2c, 0x8a, 0x7b, 0x92, 0xaa, 0x1f, 0xc3, 0x1d, 0x23, 0x5c, 0xd1,
- 0xf9, 0xc1, 0xf1, 0x99, 0x6f, 0xe0, 0x0f, 0x13, 0xec, 0x33, 0xb4, 0x0b, 0xa0, 0x84, 0x35, 0x8b,
- 0xdb, 0xc5, 0xc7, 0xb5, 0x5d, 0xb4, 0x23, 0xa5, 0xec, 0xa8, 0x45, 0x46, 0x64, 0x96, 0xbe, 0x0b,
- 0xcd, 0xa4, 0x38, 0x7f, 0x4c, 0x3c, 0x1f, 0xa3, 0x75, 0x58, 0xc6, 0x82, 0x22, 0x64, 0x55, 0x8c,
- 0x60, 0xa4, 0x9f, 0x88, 0x35, 0x96, 0x3d, 0xec, 0x7a, 0x36, 0xc5, 0x23, 0xec, 0x31, 0xcb, 0xcd,
- 0x63, 0xc3, 0x5d, 0xd8, 0x48, 0x91, 0x27, 0x8d, 0xd0, 0x5d, 0x58, 0x91, 0xcc, 0x83, 0x89, 0x9b,
- 0x47, 0x0b, 0x7a, 0x08, 0x37, 0x6c, 0x8a, 0x2d, 0x86, 0xcd, 0x0b, 0x87, 0x8d, 0xac, 0x71, 0x73,
- 0x41, 0x6c, 0xaa, 0x2e, 0x89, 0xfb, 0x82, 0xa6, 0xaf, 0x01, 0x8a, 0x6a, 0x0b, 0x6c, 0x18, 0xc3,
- 0xed, 0x43, 0x8b, 0x5e, 0x58, 0x97, 0xb8, 0x45, 0x5c, 0x17, 0xdb, 0xec, 0x7f, 0x6e, 0x47, 0x13,
- 0xd6, 0x67, 0x35, 0x06, 0xb6, 0xb4, 0xe1, 0x66, 0xcb, 0xc5, 0x96, 0x37, 0x19, 0xe7, 0x71, 0xf9,
- 0x0a, 0xdc, 0x0a, 0xa5, 0x04, 0x82, 0x5f, 0xc2, 0x6d, 0x35, 0xf9, 0xdc, 0xf9, 0x11, 0xe7, 0x91,
- 0xff, 0x0c, 0xd6, 0x67, 0x85, 0x05, 0x49, 0x85, 0x60, 0xc9, 0x77, 0x7e, 0xc4, 0x42, 0xce, 0xa2,
- 0x21, 0xbe, 0xf5, 0x21, 0x6c, 0xec, 0x8d, 0xc7, 0xee, 0xf5, 0xa1, 0xc3, 0x2c, 0xc6, 0xa8, 0x73,
- 0x31, 0x61, 0x38, 0x4f, 0x56, 0x23, 0x0d, 0x2a, 0x14, 0x7f, 0x74, 0x7c, 0x87, 0x78, 0xc2, 0xbd,
- 0x75, 0x23, 0x1c, 0xeb, 0x9b, 0xa0, 0xa5, 0x29, 0x0b, 0xbc, 0xf0, 0xe7, 0x05, 0x40, 0x07, 0x98,
- 0xd9, 0x03, 0x03, 0x8f, 0x08, 0xcb, 0xe3, 0x03, 0x7e, 0x7c, 0xa8, 0x10, 0x22, 0x4c, 0xa8, 0x1a,
- 0xc1, 0x08, 0xad, 0x41, 0xa9, 0x4f, 0xa8, 0x8d, 0x9b, 0x8b, 0x22, 0xf0, 0x72, 0x80, 0xee, 0x40,
- 0xd9, 0x23, 0x26, 0xb3, 0x2e, 0xfd, 0xe6, 0x92, 0x3c, 0x6d, 0x1e, 0x79, 0x6d, 0x5d, 0xfa, 0xa8,
- 0x09, 0x65, 0xe6, 0x8c, 0x30, 0x99, 0xb0, 0x66, 0x69, 0xbb, 0xf8, 0xb8, 0x64, 0x4c, 0x87, 0x7c,
- 0x89, 0xef, 0x0f, 0xcc, 0x21, 0xbe, 0x6e, 0x2e, 0x4b, 0x0d, 0xbe, 0x3f, 0x78, 0x89, 0xaf, 0xd1,
- 0x16, 0xd4, 0x86, 0x1e, 0xb9, 0xf2, 0xcc, 0x01, 0xe1, 0xa7, 0xb7, 0x2c, 0x98, 0x20, 0x48, 0x47,
- 0x9c, 0x82, 0x36, 0xa0, 0xe2, 0x11, 0x73, 0x4c, 0x27, 0x1e, 0x6e, 0x56, 0x85, 0xb6, 0xb2, 0x47,
- 0xce, 0xf8, 0xf0, 0xc5, 0x52, 0xa5, 0xd2, 0xa8, 0xea, 0xb7, 0x61, 0x35, 0xe6, 0x85, 0xc0, 0x3b,
- 0xc7, 0x70, 0xa7, 0x25, 0xd2, 0x34, 0xb2, 0xe5, 0x1c, 0x59, 0xa2, 0x41, 0x33, 0x29, 0x2e, 0x50,
- 0xf5, 0xaf, 0x22, 0xac, 0x1c, 0x62, 0xb6, 0x47, 0xed, 0x81, 0xf3, 0x31, 0x57, 0x1c, 0xee, 0x42,
- 0xd5, 0x26, 0xa3, 0x91, 0xc3, 0x4c, 0xa7, 0x17, 0x84, 0xa2, 0x22, 0x09, 0xdd, 0x1e, 0x0f, 0xd2,
- 0x98, 0xe2, 0xbe, 0xf3, 0x83, 0x88, 0x46, 0xd5, 0x08, 0x46, 0xe8, 0x5b, 0x58, 0xee, 0x13, 0x3a,
- 0xb2, 0x98, 0x88, 0xc6, 0xcd, 0xdd, 0xed, 0xa9, 0x92, 0x84, 0x4d, 0x3b, 0x07, 0x62, 0x9e, 0x11,
- 0xcc, 0xd7, 0x9f, 0xc3, 0xb2, 0xa4, 0xa0, 0x32, 0x2c, 0xbe, 0xeb, 0x9e, 0x35, 0x0a, 0xfc, 0xe3,
- 0xf5, 0x9e, 0xd1, 0x28, 0x22, 0x80, 0xe5, 0xd7, 0x7b, 0x86, 0x79, 0xf8, 0xae, 0xb1, 0x80, 0x6a,
- 0x50, 0xe6, 0xdf, 0xfb, 0xef, 0x76, 0x1b, 0x8b, 0xfa, 0x63, 0x40, 0x51, 0xc1, 0xea, 0xac, 0xf4,
- 0x2c, 0x66, 0x89, 0x7d, 0xd6, 0x0d, 0xf1, 0xcd, 0x43, 0x70, 0x64, 0xf9, 0xaf, 0x88, 0x6d, 0xb9,
- 0xfb, 0xd4, 0xf2, 0xec, 0x41, 0xae, 0x93, 0xa2, 0x7f, 0x0d, 0xcd, 0xa4, 0xb8, 0x40, 0xfd, 0x1a,
- 0x94, 0x3e, 0x5a, 0xee, 0x04, 0x07, 0xe5, 0x5f, 0x0e, 0xf4, 0x7f, 0x14, 0xa1, 0x29, 0x72, 0xe3,
- 0x9c, 0x4c, 0xa8, 0x8d, 0xe5, 0xaa, 0x3c, 0xf1, 0xf9, 0x0e, 0x56, 0x7c, 0x21, 0xca, 0x8c, 0x2c,
- 0x5d, 0xc8, 0x5c, 0xda, 0x90, 0x93, 0x8d, 0x58, 0x45, 0x0d, 0x04, 0x5c, 0x08, 0x63, 0x44, 0x28,
- 0xeb, 0x46, 0xdd, 0x8f, 0x18, 0x88, 0xee, 0x01, 0x30, 0x8b, 0x5e, 0x62, 0x66, 0x52, 0xdc, 0x17,
- 0x41, 0xad, 0x1b, 0x55, 0x49, 0x31, 0x70, 0x5f, 0x7f, 0x0e, 0x1b, 0x29, 0x9b, 0x52, 0x17, 0x21,
- 0xc5, 0xfe, 0xc4, 0x65, 0xd3, 0x8b, 0x50, 0x8e, 0xf4, 0x3d, 0xa8, 0x1d, 0xf8, 0xf6, 0x30, 0x8f,
- 0xff, 0x1f, 0x41, 0x5d, 0x8a, 0x50, 0x3e, 0xc7, 0x94, 0x12, 0x1a, 0xc4, 0x5c, 0x0e, 0xf4, 0xbf,
- 0x17, 0xe1, 0xd6, 0x5b, 0xea, 0xf0, 0x83, 0xd2, 0xcf, 0xe3, 0xea, 0x06, 0x2c, 0xf2, 0xdd, 0xcb,
- 0x92, 0xc8, 0x3f, 0x63, 0x95, 0x72, 0x31, 0x5e, 0x29, 0xd1, 0x03, 0xa8, 0x13, 0xb7, 0x67, 0x86,
- 0x7c, 0xe9, 0xb4, 0x1a, 0x71, 0x7b, 0xc6, 0x74, 0x4a, 0x58, 0xcb, 0x4a, 0x91, 0x5a, 0xf6, 0x62,
- 0xa9, 0xb2, 0xdc, 0x28, 0xeb, 0x4d, 0x68, 0x28, 0x9b, 0xe5, 0xf6, 0x5e, 0x2c, 0x55, 0x8a, 0x8d,
- 0x05, 0x7d, 0x00, 0x6b, 0x07, 0x8e, 0xd7, 0x3b, 0xc6, 0xf4, 0x12, 0xef, 0x5b, 0x7e, 0xae, 0xd3,
- 0xbd, 0x09, 0xd5, 0xa9, 0x81, 0x7e, 0x73, 0x61, 0x7b, 0x91, 0x87, 0x35, 0x24, 0xe8, 0x4f, 0xe1,
- 0xf6, 0x8c, 0x26, 0x75, 0xb4, 0x2e, 0x2c, 0x5f, 0xa6, 0x76, 0xd5, 0x10, 0xdf, 0xfa, 0xcf, 0x45,
- 0x58, 0x91, 0xf5, 0xe8, 0x80, 0xd0, 0xe1, 0x2f, 0x99, 0xd2, 0xfc, 0x1d, 0x12, 0xb5, 0x24, 0x7c,
- 0x0b, 0x6d, 0x74, 0x7d, 0x03, 0x73, 0x63, 0xbb, 0xde, 0x19, 0x25, 0x97, 0x14, 0xfb, 0x7e, 0xce,
- 0xd2, 0x48, 0x85, 0xb8, 0x48, 0x69, 0x94, 0x84, 0x6e, 0x4f, 0xff, 0x3d, 0x68, 0x69, 0xda, 0x02,
- 0x07, 0x6e, 0x41, 0xcd, 0xf1, 0xcc, 0x71, 0x40, 0x0e, 0x0e, 0x06, 0x38, 0xe1, 0x44, 0x69, 0xec,
- 0xf9, 0x87, 0x89, 0xe5, 0x0f, 0x3e, 0x9b, 0xb1, 0xbe, 0x10, 0x17, 0x31, 0x56, 0x12, 0xa6, 0xc6,
- 0x26, 0xb5, 0x7d, 0xaa, 0xb1, 0x7d, 0xb8, 0x3f, 0x7b, 0x13, 0x1d, 0x50, 0x32, 0x7a, 0x63, 0xbc,
- 0xca, 0x79, 0xdc, 0x26, 0xd4, 0x0d, 0x6c, 0xe5, 0x9f, 0xfa, 0x03, 0xd8, 0xca, 0xd4, 0x13, 0x04,
- 0xb9, 0x0b, 0xab, 0x72, 0xca, 0xfe, 0xc4, 0xeb, 0xb9, 0xb9, 0x5e, 0x61, 0x5f, 0xc1, 0x5a, 0x5c,
- 0xd4, 0x9c, 0x7b, 0x05, 0x03, 0x12, 0xa7, 0xb5, 0x45, 0xbc, 0xbe, 0x73, 0x99, 0x33, 0x4e, 0xfd,
- 0x89, 0xeb, 0x9a, 0x63, 0x8b, 0x0d, 0xa6, 0x71, 0xe2, 0x84, 0x33, 0x8b, 0x0d, 0xf4, 0xa7, 0xb0,
- 0x1a, 0x53, 0x33, 0xb7, 0xec, 0xfd, 0xbc, 0x00, 0x8d, 0x73, 0xcc, 0xf2, 0x9b, 0xf4, 0x2d, 0x94,
- 0xb1, 0xc7, 0xa8, 0x83, 0x65, 0x89, 0xa8, 0xed, 0xde, 0x9f, 0x2e, 0x98, 0x15, 0xbf, 0xd3, 0xf1,
- 0x18, 0xbd, 0x36, 0xa6, 0xd3, 0xb5, 0x9f, 0x8a, 0x50, 0x12, 0x24, 0x1e, 0x4c, 0xfe, 0xd2, 0x92,
- 0x05, 0x83, 0x7f, 0xa2, 0x7b, 0x50, 0x15, 0x57, 0xa2, 0xe9, 0x33, 0x2a, 0x37, 0x7a, 0x54, 0x30,
- 0x2a, 0x82, 0x74, 0xce, 0x28, 0x7a, 0x00, 0x35, 0xc9, 0x76, 0x3c, 0xf6, 0x7c, 0x57, 0x54, 0xd7,
- 0xd2, 0x51, 0xc1, 0x00, 0x41, 0xec, 0x72, 0x1a, 0xda, 0x02, 0x39, 0x32, 0x2f, 0x08, 0x71, 0xe5,
- 0xbb, 0xef, 0xa8, 0x60, 0x48, 0xa9, 0xfb, 0x84, 0xb8, 0xfb, 0xe5, 0xe0, 0x0a, 0xd6, 0x57, 0x61,
- 0x25, 0x62, 0x6a, 0x90, 0x2a, 0xef, 0x61, 0xb5, 0x8d, 0x5d, 0xfc, 0x39, 0x82, 0x86, 0x60, 0x69,
- 0x88, 0xaf, 0xa5, 0x7b, 0xaa, 0x86, 0xf8, 0xd6, 0xd7, 0x61, 0x2d, 0x2e, 0x3e, 0x50, 0x6b, 0xf3,
- 0x7e, 0xcd, 0x67, 0x84, 0xe2, 0xd6, 0xc4, 0x67, 0x64, 0x74, 0x44, 0xc8, 0xd0, 0xcf, 0xa9, 0x5c,
- 0xe4, 0xe3, 0x42, 0x24, 0x1f, 0x37, 0x41, 0x4b, 0x53, 0x12, 0x98, 0x70, 0x02, 0xcd, 0x7d, 0xcb,
- 0x1e, 0x4e, 0xc6, 0x9f, 0xc7, 0x02, 0xfd, 0xd7, 0xb0, 0x91, 0x22, 0x6f, 0xce, 0x71, 0x19, 0xc2,
- 0x83, 0xb4, 0x83, 0x9c, 0xfb, 0xcc, 0xa6, 0xfa, 0xe2, 0x11, 0xe8, 0xf3, 0x94, 0x05, 0x3e, 0x39,
- 0x02, 0xc4, 0xef, 0xba, 0x57, 0x8e, 0x8d, 0xbd, 0x5c, 0x77, 0xaa, 0xde, 0x82, 0xd5, 0x98, 0xa4,
- 0xc0, 0x0f, 0xcf, 0x00, 0xb9, 0x92, 0x64, 0xfa, 0x03, 0x42, 0x99, 0xe9, 0x59, 0xa3, 0xe9, 0x0d,
- 0xda, 0x08, 0x38, 0xe7, 0x9c, 0x71, 0x62, 0x8d, 0x44, 0x88, 0x0e, 0x31, 0xeb, 0x7a, 0x7d, 0xb2,
- 0xf7, 0x39, 0x7a, 0x3a, 0xfd, 0xb7, 0xb0, 0x91, 0x22, 0x2f, 0x30, 0xed, 0x3e, 0x80, 0x6a, 0xe6,
- 0x82, 0x40, 0x45, 0x28, 0xdc, 0x98, 0x96, 0xe5, 0xda, 0x13, 0xd7, 0x62, 0xb8, 0x35, 0xc0, 0xf6,
- 0xd0, 0x9f, 0x8c, 0xf2, 0x18, 0xf3, 0x1b, 0xd8, 0x48, 0x91, 0x17, 0x18, 0xa3, 0x41, 0xc5, 0x0e,
- 0x68, 0x81, 0x77, 0xc2, 0x31, 0x0f, 0xd2, 0x21, 0x66, 0xe7, 0x9e, 0x35, 0xf6, 0x07, 0x24, 0x0f,
- 0x8e, 0xa0, 0x3f, 0x81, 0xd5, 0x98, 0xa4, 0x39, 0xc9, 0xfa, 0xd7, 0x22, 0x3c, 0x4c, 0x4b, 0xa0,
- 0xcf, 0x60, 0x06, 0x6f, 0x25, 0x07, 0x8c, 0x8d, 0x4d, 0x75, 0xd1, 0x95, 0xf9, 0xf8, 0x0d, 0x75,
- 0xf9, 0x45, 0x20, 0x58, 0xd6, 0x84, 0x0d, 0x82, 0xf6, 0x4a, 0xcc, 0xdd, 0x9b, 0xb0, 0x81, 0xfe,
- 0x05, 0x3c, 0x9a, 0x6f, 0x52, 0x90, 0xd5, 0x7f, 0x29, 0xc2, 0xda, 0x21, 0x66, 0x86, 0x75, 0xd5,
- 0x1a, 0x58, 0xde, 0x65, 0x3e, 0x5c, 0xe0, 0x21, 0xdc, 0xe8, 0x53, 0x32, 0x32, 0x63, 0xe0, 0x40,
- 0xd5, 0xa8, 0x73, 0x62, 0xf8, 0xa6, 0xdd, 0x82, 0x1a, 0x23, 0x66, 0xec, 0x55, 0x5c, 0x35, 0x80,
- 0x91, 0xe9, 0x04, 0xfd, 0x9f, 0x8b, 0x70, 0x7b, 0xc6, 0xa4, 0xc0, 0xf9, 0x47, 0x50, 0xa3, 0xd6,
- 0x95, 0x69, 0x4b, 0x72, 0xb3, 0x28, 0xee, 0x9a, 0x2f, 0x23, 0xad, 0x63, 0x72, 0xcd, 0x4e, 0x48,
- 0x32, 0x80, 0x86, 0x5c, 0xed, 0xa7, 0x45, 0xa8, 0x86, 0x1c, 0xde, 0xe9, 0x5f, 0xb8, 0xe4, 0x82,
- 0x3f, 0x7c, 0x64, 0x42, 0x2d, 0xf3, 0x61, 0xb7, 0x17, 0xa2, 0x29, 0x0b, 0x0a, 0x4d, 0x11, 0xcd,
- 0x3d, 0xbe, 0x92, 0xd7, 0xaf, 0x34, 0xbe, 0xec, 0xe1, 0x2b, 0x7e, 0xfb, 0x72, 0x16, 0x7f, 0xd1,
- 0x0b, 0xd6, 0x92, 0x64, 0x11, 0xb7, 0x27, 0x58, 0xa7, 0x50, 0x25, 0x63, 0x4c, 0x2d, 0xc6, 0xf7,
- 0x5c, 0x12, 0x3d, 0xef, 0x37, 0x9f, 0x68, 0xf8, 0xce, 0xe9, 0x74, 0xa1, 0xa1, 0x64, 0x70, 0x5f,
- 0x73, 0x5f, 0x28, 0xa1, 0x12, 0xa3, 0xa8, 0x53, 0xeb, 0x2a, 0x9c, 0x3f, 0x35, 0x68, 0x44, 0x7a,
- 0x58, 0xc0, 0x14, 0x25, 0x61, 0xd0, 0x31, 0xe9, 0x85, 0xdb, 0x10, 0xac, 0x8a, 0x64, 0x79, 0xf8,
- 0x8a, 0xb3, 0x74, 0x07, 0xaa, 0x4a, 0x44, 0x0d, 0xca, 0x6f, 0x4e, 0x5e, 0x9e, 0x9c, 0xbe, 0x3d,
- 0x69, 0x14, 0x50, 0x15, 0x4a, 0x7b, 0xed, 0x76, 0xa7, 0x2d, 0x7b, 0xed, 0xd6, 0xe9, 0x59, 0xb7,
- 0xd3, 0x96, 0xbd, 0x76, 0xbb, 0xf3, 0xaa, 0xf3, 0xba, 0xd3, 0x6e, 0x2c, 0xa2, 0x3a, 0x54, 0x8e,
- 0x4f, 0xdb, 0xdd, 0x03, 0xce, 0x5a, 0xe2, 0x2c, 0xa3, 0x73, 0xb2, 0x77, 0xdc, 0x69, 0x37, 0x4a,
- 0xa8, 0x01, 0xf5, 0xd7, 0x7f, 0x3c, 0xeb, 0x98, 0xad, 0xa3, 0xbd, 0x93, 0xc3, 0x4e, 0xbb, 0xb1,
- 0xac, 0x7f, 0x84, 0xe6, 0x39, 0xb6, 0xa8, 0x3d, 0x38, 0x70, 0x5c, 0xec, 0xef, 0x5f, 0xf3, 0xd2,
- 0x96, 0x27, 0x03, 0xd7, 0xa0, 0xf4, 0x61, 0x82, 0x83, 0x6e, 0xa0, 0x6a, 0xc8, 0xc1, 0xb4, 0x2f,
- 0x5b, 0x0c, 0xfb, 0x32, 0xfd, 0x1b, 0xd8, 0x48, 0xd1, 0xab, 0x5e, 0x4b, 0x7d, 0x4e, 0x16, 0x09,
- 0x56, 0x37, 0xe4, 0x40, 0xff, 0x5b, 0x11, 0xee, 0xc6, 0xd6, 0xb4, 0x88, 0xc7, 0xb0, 0xc7, 0xfe,
- 0x0f, 0xe6, 0xa2, 0x27, 0xd0, 0xb0, 0x07, 0x13, 0x6f, 0x88, 0x79, 0xbb, 0x28, 0xad, 0x0c, 0x60,
- 0xac, 0x5b, 0x01, 0x3d, 0x3c, 0xd0, 0xd7, 0xb0, 0x99, 0x6e, 0x65, 0xb0, 0xb9, 0x26, 0x94, 0x47,
- 0x16, 0xb3, 0x07, 0xe1, 0xf6, 0xa6, 0x43, 0xde, 0xc2, 0x8b, 0x4f, 0x33, 0x72, 0x41, 0x56, 0x05,
- 0xa5, 0x6d, 0x31, 0x0b, 0x6d, 0x43, 0x1d, 0x7b, 0x3d, 0x93, 0xf4, 0x4d, 0x41, 0x0b, 0xe0, 0x35,
- 0xc0, 0x5e, 0xef, 0xb4, 0x7f, 0xcc, 0x29, 0xbb, 0xff, 0x5e, 0x17, 0x60, 0xf2, 0x14, 0x96, 0x94,
- 0x68, 0x3b, 0x7a, 0x0b, 0x8d, 0x59, 0x08, 0x1c, 0x6d, 0x25, 0xfd, 0x12, 0xc3, 0xda, 0xb5, 0xed,
- 0xec, 0x09, 0xc1, 0x3e, 0x0b, 0xe8, 0xdd, 0x14, 0xba, 0x8e, 0xe0, 0xda, 0x28, 0xba, 0x30, 0x15,
- 0x42, 0xd7, 0x1e, 0xcc, 0x99, 0x11, 0xca, 0xee, 0x00, 0x28, 0xa0, 0x1a, 0x6d, 0xc4, 0x97, 0x44,
- 0xa0, 0x72, 0x4d, 0x4b, 0x63, 0x85, 0x62, 0xfe, 0x00, 0x37, 0xe3, 0x38, 0x33, 0xba, 0x17, 0x1e,
- 0xfa, 0x34, 0xc4, 0x5b, 0xbb, 0x9f, 0xc5, 0x8e, 0x8a, 0x8c, 0x43, 0xbf, 0x4a, 0x64, 0x2a, 0xbe,
- 0xac, 0x44, 0xa6, 0x23, 0xc6, 0x7a, 0x01, 0xbd, 0x07, 0x94, 0x84, 0x6c, 0x51, 0xe8, 0xa7, 0x4c,
- 0xec, 0x58, 0xd3, 0xe7, 0x4d, 0x09, 0xc5, 0x1f, 0x41, 0x2d, 0x02, 0x76, 0xa2, 0xd0, 0x63, 0x49,
- 0x1c, 0x58, 0xbb, 0x9b, 0xca, 0x0b, 0x25, 0xbd, 0x85, 0xc6, 0xec, 0xa5, 0xa6, 0x52, 0x29, 0x03,
- 0x39, 0x55, 0xa9, 0x94, 0x89, 0x85, 0x16, 0xd0, 0x21, 0x80, 0xc2, 0x07, 0x55, 0xb8, 0x13, 0x60,
- 0xa4, 0x0a, 0x77, 0x12, 0x4e, 0xd4, 0x0b, 0x5f, 0x17, 0xb9, 0x85, 0xb3, 0x78, 0x9f, 0xb2, 0x30,
- 0x03, 0x58, 0x54, 0x16, 0x66, 0x41, 0x85, 0x32, 0xd9, 0x13, 0x00, 0x9a, 0x4a, 0xf6, 0x2c, 0xc0,
- 0x50, 0x25, 0x7b, 0x26, 0xfa, 0xa6, 0x17, 0xd0, 0x73, 0x58, 0x3a, 0xf0, 0xed, 0x21, 0x5a, 0x0d,
- 0x27, 0x2b, 0xd4, 0x4d, 0x5b, 0x8b, 0x13, 0xc3, 0x45, 0xdf, 0x41, 0x65, 0x0a, 0x3f, 0xa1, 0x3b,
- 0xd3, 0x39, 0x33, 0x20, 0x9a, 0xd6, 0x4c, 0x32, 0x42, 0x01, 0x27, 0x70, 0x23, 0x86, 0x1d, 0xa1,
- 0xcd, 0x50, 0x53, 0x0a, 0x78, 0xa5, 0xdd, 0xcb, 0xe0, 0x46, 0x8f, 0xac, 0xc2, 0x74, 0x54, 0x0c,
- 0x13, 0x88, 0x93, 0x8a, 0x61, 0x0a, 0x04, 0x24, 0x0e, 0x43, 0x12, 0x96, 0x51, 0x87, 0x21, 0x13,
- 0x20, 0x52, 0x87, 0x21, 0x1b, 0xd5, 0x99, 0x8a, 0x9f, 0x05, 0x52, 0xa2, 0xe2, 0x33, 0x20, 0x9d,
- 0xa8, 0xf8, 0x2c, 0x1c, 0x46, 0x2f, 0x20, 0x37, 0xf9, 0x0b, 0x42, 0x00, 0x80, 0xa0, 0x2f, 0xb2,
- 0xce, 0x41, 0x1c, 0x89, 0xd1, 0xbe, 0xfc, 0xaf, 0xf3, 0x42, 0x6d, 0xc7, 0x50, 0x8f, 0x02, 0x20,
- 0xe8, 0x6e, 0x7c, 0x69, 0xac, 0x5b, 0xd3, 0x36, 0xd3, 0x99, 0x91, 0xc3, 0x73, 0x05, 0x5a, 0x76,
- 0x1f, 0x86, 0x9e, 0xcc, 0xb3, 0x2b, 0xae, 0xea, 0xab, 0x4f, 0x99, 0x3a, 0x55, 0xfc, 0xb8, 0xc8,
- 0x2b, 0x54, 0x04, 0x35, 0x51, 0x15, 0x2a, 0x89, 0xd8, 0xa8, 0x0a, 0x95, 0x02, 0xb3, 0xe8, 0x05,
- 0xb4, 0x0f, 0xd5, 0x10, 0x47, 0x40, 0xcd, 0x2c, 0x14, 0x44, 0xdb, 0x48, 0xe1, 0x84, 0x32, 0x5e,
- 0x42, 0x3d, 0x8a, 0x0b, 0x28, 0xaf, 0xa6, 0x80, 0x11, 0xca, 0xab, 0xa9, 0x50, 0x82, 0x2c, 0xbe,
- 0xaa, 0xd7, 0x8c, 0x14, 0xdf, 0x44, 0x2b, 0x1b, 0x29, 0xbe, 0xc9, 0xe6, 0x54, 0x2f, 0xa0, 0xef,
- 0xc5, 0x0f, 0x46, 0xf1, 0x06, 0x11, 0x45, 0x7f, 0xb7, 0x49, 0xed, 0x45, 0x55, 0x05, 0xca, 0xec,
- 0x2e, 0x45, 0xec, 0xdf, 0xc1, 0x4a, 0xa2, 0xe3, 0x53, 0xd2, 0xb3, 0x9a, 0x4b, 0x25, 0x3d, 0xb3,
- 0x5d, 0xd4, 0x0b, 0xe8, 0x77, 0x50, 0x0e, 0x7e, 0x8d, 0x45, 0xeb, 0xe1, 0xfc, 0xd8, 0x8f, 0xbc,
- 0xda, 0x9d, 0x04, 0x3d, 0x5c, 0xfd, 0x02, 0x6a, 0x91, 0x46, 0x10, 0x45, 0x6f, 0x80, 0x99, 0x06,
- 0x4f, 0x79, 0x30, 0xa5, 0x73, 0x14, 0xbb, 0xfc, 0x13, 0x6c, 0xce, 0xeb, 0xca, 0xd0, 0xd3, 0x79,
- 0x89, 0x3b, 0xab, 0xed, 0xd9, 0xa7, 0x4d, 0x0e, 0x37, 0x72, 0x06, 0x37, 0x62, 0x9d, 0x86, 0x2a,
- 0xb8, 0x69, 0x0d, 0xa0, 0x2a, 0xb8, 0xa9, 0xed, 0x89, 0xd8, 0x0e, 0x86, 0xb5, 0xb4, 0xb7, 0x26,
- 0x7a, 0xa8, 0xd2, 0x3b, 0xf3, 0xbd, 0xac, 0x3d, 0x9a, 0x3f, 0x29, 0xa2, 0xe6, 0x7b, 0x58, 0x49,
- 0x3c, 0xd6, 0x55, 0x6e, 0x64, 0xf5, 0x0f, 0x2a, 0x37, 0x32, 0x5f, 0xfa, 0x42, 0xfa, 0x7b, 0x40,
- 0x49, 0x24, 0x0c, 0x45, 0x5e, 0x89, 0x19, 0x50, 0x9c, 0xaa, 0xc8, 0xd9, 0x40, 0xda, 0x63, 0x61,
- 0x7c, 0x02, 0xfa, 0x52, 0xc6, 0x67, 0xa1, 0x6c, 0xca, 0xf8, 0x4c, 0xdc, 0x8c, 0x1b, 0x7f, 0xb1,
- 0x2c, 0xfe, 0xb5, 0xf2, 0xfc, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x90, 0x21, 0x07, 0x51, 0xe7,
- 0x22, 0x00, 0x00,
+ proto.RegisterFile("repository-service.proto", fileDescriptor_repository_service_e78248130d6ea2d6)
+}
+
+var fileDescriptor_repository_service_e78248130d6ea2d6 = []byte{
+ // 2500 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xef, 0x72, 0xdb, 0xb8,
+ 0x11, 0x97, 0x2c, 0xcb, 0x92, 0x56, 0x4a, 0x22, 0xc3, 0x4e, 0x2c, 0x33, 0x4e, 0xec, 0x30, 0x99,
+ 0xbb, 0xe4, 0x92, 0xba, 0x77, 0xf6, 0x87, 0xde, 0x4c, 0xdb, 0xc9, 0xd8, 0x92, 0x6c, 0x2b, 0x89,
+ 0xff, 0x94, 0x4e, 0x26, 0xd3, 0xcc, 0x65, 0x38, 0x34, 0x05, 0x59, 0xac, 0x28, 0x42, 0x21, 0xa1,
+ 0xf8, 0x7c, 0xfd, 0xda, 0x9b, 0xb9, 0x8f, 0xed, 0x3b, 0xf4, 0x05, 0xda, 0xa7, 0xe8, 0xf7, 0x3e,
+ 0x45, 0xa7, 0x2f, 0xd1, 0x01, 0x40, 0x12, 0xa4, 0x48, 0xaa, 0xe9, 0x30, 0x6d, 0xbf, 0x11, 0xbb,
+ 0xc0, 0xee, 0x62, 0x77, 0xb1, 0xc0, 0xfe, 0x24, 0x68, 0xb9, 0x78, 0x42, 0x3c, 0x8b, 0x12, 0xf7,
+ 0xfa, 0x67, 0x1e, 0x76, 0x3f, 0x5a, 0x26, 0xde, 0x9e, 0xb8, 0x84, 0x12, 0xb4, 0x74, 0x69, 0x51,
+ 0xc3, 0xbe, 0x56, 0x1a, 0xde, 0xd0, 0x70, 0x71, 0x5f, 0x50, 0xd5, 0x63, 0x58, 0xd3, 0xc2, 0x15,
+ 0xdd, 0xef, 0x2d, 0x8f, 0x7a, 0x1a, 0xfe, 0x30, 0xc5, 0x1e, 0x45, 0x3b, 0x00, 0x52, 0x58, 0xab,
+ 0xb8, 0x55, 0x7c, 0x5c, 0xdf, 0x41, 0xdb, 0x42, 0xca, 0xb6, 0x5c, 0xa4, 0x45, 0x66, 0xa9, 0x3b,
+ 0xd0, 0x4a, 0x8a, 0xf3, 0x26, 0xc4, 0xf1, 0x30, 0xba, 0x03, 0x4b, 0x98, 0x53, 0xb8, 0xac, 0xaa,
+ 0xe6, 0x8f, 0xd4, 0x13, 0xbe, 0xc6, 0x30, 0x47, 0x3d, 0xc7, 0x74, 0xf1, 0x18, 0x3b, 0xd4, 0xb0,
+ 0xf3, 0xd8, 0x70, 0x17, 0xd6, 0x53, 0xe4, 0x09, 0x23, 0x54, 0x1b, 0x96, 0x05, 0xf3, 0x60, 0x6a,
+ 0xe7, 0xd1, 0x82, 0x1e, 0xc2, 0x0d, 0xd3, 0xc5, 0x06, 0xc5, 0xfa, 0x85, 0x45, 0xc7, 0xc6, 0xa4,
+ 0xb5, 0xc0, 0x37, 0xd5, 0x10, 0xc4, 0x7d, 0x4e, 0x53, 0x57, 0x01, 0x45, 0xb5, 0xf9, 0x36, 0x4c,
+ 0xe0, 0xf6, 0xa1, 0xe1, 0x5e, 0x18, 0x97, 0xb8, 0x4d, 0x6c, 0x1b, 0x9b, 0xf4, 0xbf, 0x6e, 0x47,
+ 0x0b, 0xee, 0xcc, 0x6a, 0xf4, 0x6d, 0xe9, 0xc0, 0xcd, 0xb6, 0x8d, 0x0d, 0x67, 0x3a, 0xc9, 0xe3,
+ 0xf2, 0x65, 0xb8, 0x15, 0x4a, 0xf1, 0x05, 0xbf, 0x84, 0xdb, 0x72, 0xf2, 0xb9, 0xf5, 0x03, 0xce,
+ 0x23, 0xff, 0x19, 0xdc, 0x99, 0x15, 0xe6, 0x27, 0x15, 0x82, 0x45, 0xcf, 0xfa, 0x01, 0x73, 0x39,
+ 0x25, 0x8d, 0x7f, 0xab, 0x23, 0x58, 0xdf, 0x9b, 0x4c, 0xec, 0xeb, 0x43, 0x8b, 0x1a, 0x94, 0xba,
+ 0xd6, 0xc5, 0x94, 0xe2, 0x3c, 0x59, 0x8d, 0x14, 0xa8, 0xba, 0xf8, 0xa3, 0xe5, 0x59, 0xc4, 0xe1,
+ 0xee, 0x6d, 0x68, 0xe1, 0x58, 0xdd, 0x00, 0x25, 0x4d, 0x99, 0xef, 0x85, 0x3f, 0x2c, 0x00, 0x3a,
+ 0xc0, 0xd4, 0x1c, 0x6a, 0x78, 0x4c, 0x68, 0x1e, 0x1f, 0xb0, 0xe3, 0xe3, 0x72, 0x21, 0xdc, 0x84,
+ 0x9a, 0xe6, 0x8f, 0xd0, 0x2a, 0x94, 0x07, 0xc4, 0x35, 0x71, 0xab, 0xc4, 0x03, 0x2f, 0x06, 0x68,
+ 0x0d, 0x2a, 0x0e, 0xd1, 0xa9, 0x71, 0xe9, 0xb5, 0x16, 0xc5, 0x69, 0x73, 0xc8, 0x6b, 0xe3, 0xd2,
+ 0x43, 0x2d, 0xa8, 0x50, 0x6b, 0x8c, 0xc9, 0x94, 0xb6, 0xca, 0x5b, 0xc5, 0xc7, 0x65, 0x2d, 0x18,
+ 0xb2, 0x25, 0x9e, 0x37, 0xd4, 0x47, 0xf8, 0xba, 0xb5, 0x24, 0x34, 0x78, 0xde, 0xf0, 0x25, 0xbe,
+ 0x46, 0x9b, 0x50, 0x1f, 0x39, 0xe4, 0xca, 0xd1, 0x87, 0x84, 0x9d, 0xde, 0x0a, 0x67, 0x02, 0x27,
+ 0x1d, 0x31, 0x0a, 0x5a, 0x87, 0xaa, 0x43, 0xf4, 0x89, 0x3b, 0x75, 0x70, 0xab, 0xc6, 0xb5, 0x55,
+ 0x1c, 0x72, 0xc6, 0x86, 0x2f, 0x16, 0xab, 0xd5, 0x66, 0x4d, 0xbd, 0x0d, 0x2b, 0x31, 0x2f, 0xf8,
+ 0xde, 0x39, 0x86, 0xb5, 0x36, 0x4f, 0xd3, 0xc8, 0x96, 0x73, 0x64, 0x89, 0x02, 0xad, 0xa4, 0x38,
+ 0x5f, 0xd5, 0x3f, 0x8b, 0xb0, 0x7c, 0x88, 0xe9, 0x9e, 0x6b, 0x0e, 0xad, 0x8f, 0xb9, 0xe2, 0x70,
+ 0x17, 0x6a, 0x26, 0x19, 0x8f, 0x2d, 0xaa, 0x5b, 0x7d, 0x3f, 0x14, 0x55, 0x41, 0xe8, 0xf5, 0x59,
+ 0x90, 0x26, 0x2e, 0x1e, 0x58, 0xdf, 0xf3, 0x68, 0xd4, 0x34, 0x7f, 0x84, 0xbe, 0x85, 0xa5, 0x01,
+ 0x71, 0xc7, 0x06, 0xe5, 0xd1, 0xb8, 0xb9, 0xb3, 0x15, 0x28, 0x49, 0xd8, 0xb4, 0x7d, 0xc0, 0xe7,
+ 0x69, 0xfe, 0x7c, 0x75, 0x17, 0x96, 0x04, 0x05, 0x55, 0xa0, 0xf4, 0xae, 0x77, 0xd6, 0x2c, 0xb0,
+ 0x8f, 0xd7, 0x7b, 0x5a, 0xb3, 0x88, 0x00, 0x96, 0x5e, 0xef, 0x69, 0xfa, 0xe1, 0xbb, 0xe6, 0x02,
+ 0xaa, 0x43, 0x85, 0x7d, 0xef, 0xbf, 0xdb, 0x69, 0x96, 0xd4, 0xc7, 0x80, 0xa2, 0x82, 0xe5, 0x59,
+ 0xe9, 0x1b, 0xd4, 0xe0, 0xfb, 0x6c, 0x68, 0xfc, 0x9b, 0x85, 0xe0, 0xc8, 0xf0, 0x5e, 0x11, 0xd3,
+ 0xb0, 0xf7, 0x5d, 0xc3, 0x31, 0x87, 0xb9, 0x4e, 0x8a, 0xfa, 0x35, 0xb4, 0x92, 0xe2, 0x7c, 0xf5,
+ 0xab, 0x50, 0xfe, 0x68, 0xd8, 0x53, 0xec, 0x97, 0x7f, 0x31, 0x50, 0xff, 0x5e, 0x84, 0x16, 0xcf,
+ 0x8d, 0x73, 0x32, 0x75, 0x4d, 0x2c, 0x56, 0xe5, 0x89, 0xcf, 0x73, 0x58, 0xf6, 0xb8, 0x28, 0x3d,
+ 0xb2, 0x74, 0x21, 0x73, 0x69, 0x53, 0x4c, 0xd6, 0x62, 0x15, 0xd5, 0x17, 0x70, 0xc1, 0x8d, 0xe1,
+ 0xa1, 0x6c, 0x68, 0x0d, 0x2f, 0x62, 0x20, 0xba, 0x07, 0x40, 0x0d, 0xf7, 0x12, 0x53, 0xdd, 0xc5,
+ 0x03, 0x1e, 0xd4, 0x86, 0x56, 0x13, 0x14, 0x0d, 0x0f, 0xd4, 0x5d, 0x58, 0x4f, 0xd9, 0x94, 0xbc,
+ 0x08, 0x5d, 0xec, 0x4d, 0x6d, 0x1a, 0x5c, 0x84, 0x62, 0xa4, 0xee, 0x41, 0xfd, 0xc0, 0x33, 0x47,
+ 0x79, 0xfc, 0xff, 0x08, 0x1a, 0x42, 0x84, 0xf4, 0x39, 0x76, 0x5d, 0xe2, 0xfa, 0x31, 0x17, 0x03,
+ 0xf5, 0xaf, 0x45, 0xb8, 0xf5, 0xd6, 0xb5, 0xd8, 0x41, 0x19, 0xe4, 0x71, 0x75, 0x13, 0x4a, 0x6c,
+ 0xf7, 0xa2, 0x24, 0xb2, 0xcf, 0x58, 0xa5, 0x2c, 0xc5, 0x2b, 0x25, 0x7a, 0x00, 0x0d, 0x62, 0xf7,
+ 0xf5, 0x90, 0x2f, 0x9c, 0x56, 0x27, 0x76, 0x5f, 0x0b, 0xa6, 0x84, 0xb5, 0xac, 0x1c, 0xa9, 0x65,
+ 0x2f, 0x16, 0xab, 0x4b, 0xcd, 0x8a, 0xda, 0x82, 0xa6, 0xb4, 0x59, 0x6c, 0xef, 0xc5, 0x62, 0xb5,
+ 0xd8, 0x5c, 0x50, 0x87, 0xb0, 0x7a, 0x60, 0x39, 0xfd, 0x63, 0xec, 0x5e, 0xe2, 0x7d, 0xc3, 0xcb,
+ 0x75, 0xba, 0x37, 0xa0, 0x16, 0x18, 0xe8, 0xb5, 0x16, 0xb6, 0x4a, 0x2c, 0xac, 0x21, 0x41, 0x7d,
+ 0x0a, 0xb7, 0x67, 0x34, 0xc9, 0xa3, 0x75, 0x61, 0x78, 0x22, 0xb5, 0x6b, 0x1a, 0xff, 0x56, 0x7f,
+ 0x2a, 0xc2, 0xb2, 0xa8, 0x47, 0x07, 0xc4, 0x1d, 0xfd, 0x3f, 0x53, 0x9a, 0xbd, 0x43, 0xa2, 0x96,
+ 0x84, 0x6f, 0xa1, 0xf5, 0x9e, 0xa7, 0x61, 0x66, 0x6c, 0xcf, 0x39, 0x73, 0xc9, 0xa5, 0x8b, 0x3d,
+ 0x2f, 0x67, 0x69, 0x74, 0xb9, 0xb8, 0x48, 0x69, 0x14, 0x84, 0x5e, 0x5f, 0xfd, 0x35, 0x28, 0x69,
+ 0xda, 0x7c, 0x07, 0x6e, 0x42, 0xdd, 0x72, 0xf4, 0x89, 0x4f, 0xf6, 0x0f, 0x06, 0x58, 0xe1, 0x44,
+ 0x61, 0xec, 0xf9, 0x87, 0xa9, 0xe1, 0x0d, 0x3f, 0x9b, 0xb1, 0x1e, 0x17, 0x17, 0x31, 0x56, 0x10,
+ 0x02, 0x63, 0x93, 0xda, 0x3e, 0xd5, 0xd8, 0x01, 0xdc, 0x9f, 0xbd, 0x89, 0x0e, 0x5c, 0x32, 0x7e,
+ 0xa3, 0xbd, 0xca, 0x79, 0xdc, 0xa6, 0xae, 0xed, 0xdb, 0xca, 0x3e, 0xd5, 0x07, 0xb0, 0x99, 0xa9,
+ 0xc7, 0x0f, 0x72, 0x0f, 0x56, 0xc4, 0x94, 0xfd, 0xa9, 0xd3, 0xb7, 0x73, 0xbd, 0xc2, 0xbe, 0x82,
+ 0xd5, 0xb8, 0xa8, 0x39, 0xf7, 0x0a, 0x06, 0xc4, 0x4f, 0x6b, 0x9b, 0x38, 0x03, 0xeb, 0x32, 0x67,
+ 0x9c, 0x06, 0x53, 0xdb, 0xd6, 0x27, 0x06, 0x1d, 0x06, 0x71, 0x62, 0x84, 0x33, 0x83, 0x0e, 0xd5,
+ 0xa7, 0xb0, 0x12, 0x53, 0x33, 0xb7, 0xec, 0xfd, 0xb4, 0x00, 0xcd, 0x73, 0x4c, 0xf3, 0x9b, 0xf4,
+ 0x2d, 0x54, 0xb0, 0x43, 0x5d, 0x0b, 0x8b, 0x12, 0x51, 0xdf, 0xb9, 0x1f, 0x2c, 0x98, 0x15, 0xbf,
+ 0xdd, 0x75, 0xa8, 0x7b, 0xad, 0x05, 0xd3, 0x95, 0x1f, 0x8b, 0x50, 0xe6, 0x24, 0x16, 0x4c, 0xf6,
+ 0xd2, 0x12, 0x05, 0x83, 0x7d, 0xa2, 0x7b, 0x50, 0xe3, 0x57, 0xa2, 0xee, 0x51, 0x57, 0x6c, 0xf4,
+ 0xa8, 0xa0, 0x55, 0x39, 0xe9, 0x9c, 0xba, 0xe8, 0x01, 0xd4, 0x05, 0xdb, 0x72, 0xe8, 0xee, 0x0e,
+ 0xaf, 0xae, 0xe5, 0xa3, 0x82, 0x06, 0x9c, 0xd8, 0x63, 0x34, 0xb4, 0x09, 0x62, 0xa4, 0x5f, 0x10,
+ 0x62, 0x8b, 0x77, 0xdf, 0x51, 0x41, 0x13, 0x52, 0xf7, 0x09, 0xb1, 0xf7, 0x2b, 0xfe, 0x15, 0xac,
+ 0xae, 0xc0, 0x72, 0xc4, 0x54, 0x3f, 0x55, 0xde, 0xc3, 0x4a, 0x07, 0xdb, 0xf8, 0x73, 0x04, 0x0d,
+ 0xc1, 0xe2, 0x08, 0x5f, 0x0b, 0xf7, 0xd4, 0x34, 0xfe, 0xad, 0xde, 0x81, 0xd5, 0xb8, 0x78, 0x5f,
+ 0xad, 0xc9, 0xfa, 0x35, 0x8f, 0x12, 0x17, 0xb7, 0xa7, 0x1e, 0x25, 0xe3, 0x23, 0x42, 0x46, 0x5e,
+ 0x4e, 0xe5, 0x3c, 0x1f, 0x17, 0x22, 0xf9, 0xb8, 0x01, 0x4a, 0x9a, 0x12, 0xdf, 0x84, 0x13, 0x68,
+ 0xed, 0x1b, 0xe6, 0x68, 0x3a, 0xf9, 0x3c, 0x16, 0xa8, 0x3f, 0x87, 0xf5, 0x14, 0x79, 0x73, 0x8e,
+ 0xcb, 0x08, 0x1e, 0xa4, 0x1d, 0xe4, 0xdc, 0x67, 0x36, 0xd5, 0x17, 0x8f, 0x40, 0x9d, 0xa7, 0xcc,
+ 0xf7, 0xc9, 0x11, 0x20, 0x76, 0xd7, 0xbd, 0xb2, 0x4c, 0xec, 0xe4, 0xba, 0x53, 0xd5, 0x36, 0xac,
+ 0xc4, 0x24, 0xf9, 0x7e, 0x78, 0x06, 0xc8, 0x16, 0x24, 0xdd, 0x1b, 0x12, 0x97, 0xea, 0x8e, 0x31,
+ 0x0e, 0x6e, 0xd0, 0xa6, 0xcf, 0x39, 0x67, 0x8c, 0x13, 0x63, 0xcc, 0x43, 0x74, 0x88, 0x69, 0xcf,
+ 0x19, 0x90, 0xbd, 0xcf, 0xd1, 0xd3, 0xa9, 0xbf, 0x84, 0xf5, 0x14, 0x79, 0xbe, 0x69, 0xf7, 0x01,
+ 0x64, 0x33, 0xe7, 0x07, 0x2a, 0x42, 0x61, 0xc6, 0xb4, 0x0d, 0xdb, 0x9c, 0xda, 0x06, 0xc5, 0xed,
+ 0x21, 0x36, 0x47, 0xde, 0x74, 0x9c, 0xc7, 0x98, 0x5f, 0xc0, 0x7a, 0x8a, 0x3c, 0xdf, 0x18, 0x05,
+ 0xaa, 0xa6, 0x4f, 0xf3, 0xbd, 0x13, 0x8e, 0x59, 0x90, 0x0e, 0x31, 0x3d, 0x77, 0x8c, 0x89, 0x37,
+ 0x24, 0x79, 0x70, 0x04, 0xf5, 0x09, 0xac, 0xc4, 0x24, 0xcd, 0x49, 0xd6, 0x3f, 0x15, 0xe1, 0x61,
+ 0x5a, 0x02, 0x7d, 0x06, 0x33, 0x58, 0x2b, 0x39, 0xa4, 0x74, 0xa2, 0xcb, 0x8b, 0xae, 0xc2, 0xc6,
+ 0x6f, 0x5c, 0x9b, 0x5d, 0x04, 0x9c, 0x65, 0x4c, 0xe9, 0xd0, 0x6f, 0xaf, 0xf8, 0xdc, 0xbd, 0x29,
+ 0x1d, 0xaa, 0x5f, 0xc0, 0xa3, 0xf9, 0x26, 0xf9, 0x59, 0xfd, 0xc7, 0x22, 0xac, 0x1e, 0x62, 0xaa,
+ 0x19, 0x57, 0xed, 0xa1, 0xe1, 0x5c, 0xe6, 0xc3, 0x05, 0x1e, 0xc2, 0x8d, 0x81, 0x4b, 0xc6, 0x7a,
+ 0x0c, 0x1c, 0xa8, 0x69, 0x0d, 0x46, 0x0c, 0xdf, 0xb4, 0x9b, 0x50, 0xa7, 0x44, 0x8f, 0xbd, 0x8a,
+ 0x6b, 0x1a, 0x50, 0x12, 0x4c, 0x50, 0xff, 0x51, 0x82, 0xdb, 0x33, 0x26, 0xf9, 0xce, 0x3f, 0x82,
+ 0xba, 0x6b, 0x5c, 0xe9, 0xa6, 0x20, 0xb7, 0x8a, 0xfc, 0xae, 0xf9, 0x32, 0xd2, 0x3a, 0x26, 0xd7,
+ 0x6c, 0x87, 0x24, 0x0d, 0xdc, 0x90, 0xab, 0xfc, 0x58, 0x82, 0x5a, 0xc8, 0x61, 0x9d, 0xfe, 0x85,
+ 0x4d, 0x2e, 0xd8, 0xc3, 0x47, 0x24, 0xd4, 0x12, 0x1b, 0xf6, 0xfa, 0x21, 0x9a, 0xb2, 0x20, 0xd1,
+ 0x14, 0xde, 0xdc, 0xe3, 0x2b, 0x71, 0xfd, 0x0a, 0xe3, 0x2b, 0x0e, 0xbe, 0x62, 0xb7, 0x2f, 0x63,
+ 0xb1, 0x17, 0x3d, 0x67, 0x2d, 0x0a, 0x16, 0xb1, 0xfb, 0x9c, 0x75, 0x0a, 0x35, 0x32, 0xc1, 0xae,
+ 0x41, 0xd9, 0x9e, 0xcb, 0xbc, 0xe7, 0xfd, 0xe6, 0x13, 0x0d, 0xdf, 0x3e, 0x0d, 0x16, 0x6a, 0x52,
+ 0x06, 0xf3, 0x35, 0xf3, 0x85, 0x14, 0x2a, 0x30, 0x8a, 0x86, 0x6b, 0x5c, 0x85, 0xf3, 0x03, 0x83,
+ 0xc6, 0xa4, 0x8f, 0x39, 0x4c, 0x51, 0xe6, 0x06, 0x1d, 0x93, 0x7e, 0xb8, 0x0d, 0xce, 0xaa, 0x0a,
+ 0x96, 0x83, 0xaf, 0x18, 0x4b, 0xb5, 0xa0, 0x26, 0x45, 0xd4, 0xa1, 0xf2, 0xe6, 0xe4, 0xe5, 0xc9,
+ 0xe9, 0xdb, 0x93, 0x66, 0x01, 0xd5, 0xa0, 0xbc, 0xd7, 0xe9, 0x74, 0x3b, 0xa2, 0xd7, 0x6e, 0x9f,
+ 0x9e, 0xf5, 0xba, 0x1d, 0xd1, 0x6b, 0x77, 0xba, 0xaf, 0xba, 0xaf, 0xbb, 0x9d, 0x66, 0x09, 0x35,
+ 0xa0, 0x7a, 0x7c, 0xda, 0xe9, 0x1d, 0x30, 0xd6, 0x22, 0x63, 0x69, 0xdd, 0x93, 0xbd, 0xe3, 0x6e,
+ 0xa7, 0x59, 0x46, 0x4d, 0x68, 0xbc, 0xfe, 0xed, 0x59, 0x57, 0x6f, 0x1f, 0xed, 0x9d, 0x1c, 0x76,
+ 0x3b, 0xcd, 0x25, 0xf5, 0x23, 0xb4, 0xce, 0xb1, 0xe1, 0x9a, 0xc3, 0x03, 0xcb, 0xc6, 0xde, 0xfe,
+ 0x35, 0x2b, 0x6d, 0x79, 0x32, 0x70, 0x15, 0xca, 0x1f, 0xa6, 0xd8, 0xef, 0x06, 0x6a, 0x9a, 0x18,
+ 0x04, 0x7d, 0x59, 0x29, 0xec, 0xcb, 0xd4, 0x6f, 0x60, 0x3d, 0x45, 0xaf, 0x7c, 0x2d, 0x0d, 0x18,
+ 0x99, 0x27, 0x58, 0x43, 0x13, 0x03, 0xf5, 0xcf, 0x45, 0xb8, 0x1b, 0x5b, 0xd3, 0x26, 0x0e, 0xc5,
+ 0x0e, 0xfd, 0x1f, 0x98, 0x8b, 0x9e, 0x40, 0xd3, 0x1c, 0x4e, 0x9d, 0x11, 0x66, 0xed, 0xa2, 0xb0,
+ 0xd2, 0x87, 0xb1, 0x6e, 0xf9, 0xf4, 0xf0, 0x40, 0x5f, 0xc3, 0x46, 0xba, 0x95, 0xfe, 0xe6, 0x5a,
+ 0x50, 0x19, 0x1b, 0xd4, 0x1c, 0x86, 0xdb, 0x0b, 0x86, 0xac, 0x85, 0xe7, 0x9f, 0x7a, 0xe4, 0x82,
+ 0xac, 0x71, 0x4a, 0xc7, 0xa0, 0x06, 0xda, 0x82, 0x06, 0x76, 0xfa, 0x3a, 0x19, 0xe8, 0x9c, 0xe6,
+ 0xc3, 0x6b, 0x80, 0x9d, 0xfe, 0xe9, 0xe0, 0x98, 0x51, 0xd4, 0xbf, 0x15, 0xe1, 0xd6, 0x99, 0x8b,
+ 0x7d, 0x64, 0x4b, 0x78, 0x25, 0xb5, 0x55, 0x2b, 0xfe, 0x07, 0xe8, 0xc3, 0x73, 0x58, 0x0e, 0x81,
+ 0x85, 0x4f, 0xe9, 0xf5, 0x02, 0xcc, 0x21, 0x14, 0xb0, 0x0b, 0x75, 0x72, 0xf1, 0x3b, 0x6c, 0x52,
+ 0x7d, 0xc2, 0x5e, 0x81, 0xa5, 0xf8, 0xd2, 0x53, 0xce, 0x3a, 0x23, 0xc4, 0xd6, 0x80, 0x84, 0xdf,
+ 0x2a, 0x82, 0xa6, 0xdc, 0x89, 0xf0, 0xdc, 0xce, 0x5f, 0xd6, 0x38, 0x56, 0x1e, 0xa0, 0xae, 0xe2,
+ 0xc7, 0x04, 0xf4, 0x16, 0x9a, 0xb3, 0x08, 0x3f, 0xda, 0x4c, 0x1a, 0x16, 0xfb, 0x29, 0x41, 0xd9,
+ 0xca, 0x9e, 0xe0, 0x87, 0xb1, 0x80, 0xde, 0x05, 0xc8, 0x7c, 0x04, 0xb6, 0x47, 0xd1, 0x85, 0xa9,
+ 0xbf, 0x10, 0x28, 0x0f, 0xe6, 0xcc, 0x08, 0x65, 0x77, 0x01, 0x24, 0x0e, 0x8f, 0xd6, 0xe3, 0x4b,
+ 0x22, 0xbf, 0x04, 0x28, 0x4a, 0x1a, 0x2b, 0x14, 0xf3, 0x1b, 0xb8, 0x19, 0x87, 0xd1, 0xd1, 0xbd,
+ 0xb0, 0xa6, 0xa5, 0x01, 0xfa, 0xca, 0xfd, 0x2c, 0x76, 0x54, 0x64, 0x1c, 0xd9, 0x96, 0x22, 0x53,
+ 0xe1, 0x73, 0x29, 0x32, 0x1d, 0x10, 0x57, 0x0b, 0xe8, 0x3d, 0xa0, 0x24, 0x22, 0x8d, 0x42, 0x3f,
+ 0x65, 0x42, 0xe3, 0x8a, 0x3a, 0x6f, 0x4a, 0x28, 0xfe, 0x08, 0xea, 0x11, 0x2c, 0x17, 0x85, 0x1e,
+ 0x4b, 0xc2, 0xdc, 0xca, 0xdd, 0x54, 0x5e, 0x28, 0xe9, 0x2d, 0x34, 0x67, 0xef, 0x6c, 0x99, 0x4a,
+ 0x19, 0xc0, 0xb0, 0x4c, 0xa5, 0x4c, 0xa8, 0xb7, 0x80, 0x0e, 0x01, 0x24, 0xfc, 0x29, 0xc3, 0x9d,
+ 0xc0, 0x5a, 0x65, 0xb8, 0x93, 0x68, 0xa9, 0x5a, 0xf8, 0xba, 0xc8, 0x2c, 0x9c, 0x85, 0x33, 0xa5,
+ 0x85, 0x19, 0xb8, 0xa9, 0xb4, 0x30, 0x0b, 0x09, 0x15, 0xc9, 0x9e, 0xc0, 0x07, 0x65, 0xb2, 0x67,
+ 0xe1, 0xa1, 0x32, 0xd9, 0x33, 0xc1, 0x45, 0xb5, 0x80, 0x76, 0x61, 0xf1, 0xc0, 0x33, 0x47, 0x68,
+ 0x25, 0x9c, 0x2c, 0x41, 0x45, 0x65, 0x35, 0x4e, 0x0c, 0x17, 0x3d, 0x87, 0x6a, 0x80, 0xae, 0xa1,
+ 0xb5, 0x60, 0xce, 0x0c, 0x46, 0xa8, 0xb4, 0x92, 0x8c, 0x50, 0xc0, 0x09, 0xdc, 0x88, 0x41, 0x63,
+ 0x68, 0x23, 0xd4, 0x94, 0x82, 0xcd, 0x29, 0xf7, 0x32, 0xb8, 0xd1, 0x23, 0x2b, 0x21, 0x2b, 0x19,
+ 0xc3, 0x04, 0xa0, 0x26, 0x63, 0x98, 0x82, 0x70, 0xf1, 0xc3, 0x90, 0x44, 0x9d, 0xe4, 0x61, 0xc8,
+ 0xc4, 0xbf, 0xe4, 0x61, 0xc8, 0x06, 0xad, 0x02, 0xf1, 0xb3, 0x38, 0x51, 0x54, 0x7c, 0x06, 0x62,
+ 0x15, 0x15, 0x9f, 0x05, 0x33, 0xa9, 0x05, 0x64, 0x27, 0x7f, 0x20, 0xf1, 0xf1, 0x1d, 0xf4, 0x45,
+ 0xd6, 0x39, 0x88, 0x03, 0x4d, 0xca, 0x97, 0xff, 0x76, 0x5e, 0xa8, 0xed, 0x18, 0x1a, 0x51, 0x7c,
+ 0x07, 0xdd, 0x8d, 0x2f, 0x8d, 0x35, 0xa3, 0xca, 0x46, 0x3a, 0x33, 0x72, 0x78, 0xae, 0x40, 0xc9,
+ 0x6e, 0x33, 0xd1, 0x93, 0x79, 0x76, 0xc5, 0x55, 0x7d, 0xf5, 0x29, 0x53, 0x03, 0xc5, 0x8f, 0x8b,
+ 0xac, 0x42, 0x45, 0x40, 0x21, 0x59, 0xa1, 0x92, 0x80, 0x94, 0xac, 0x50, 0x29, 0x28, 0x92, 0x5a,
+ 0x40, 0xfb, 0x50, 0x0b, 0x61, 0x12, 0xd4, 0xca, 0x02, 0x79, 0x94, 0xf5, 0x14, 0x4e, 0x28, 0xe3,
+ 0x25, 0x34, 0xa2, 0xb0, 0x87, 0xf4, 0x6a, 0x0a, 0xd6, 0x22, 0xbd, 0x9a, 0x8a, 0x94, 0x88, 0xe2,
+ 0x2b, 0x5b, 0xe9, 0x48, 0xf1, 0x4d, 0x74, 0xea, 0x91, 0xe2, 0x9b, 0xec, 0xbd, 0xd5, 0x02, 0xfa,
+ 0x8e, 0xff, 0x1e, 0x16, 0xef, 0x7f, 0x51, 0xf4, 0x67, 0xa9, 0xd4, 0x56, 0x5b, 0x56, 0xa0, 0xcc,
+ 0xe6, 0x99, 0xc7, 0xfe, 0x1d, 0x2c, 0x27, 0x1a, 0x5a, 0x29, 0x3d, 0xab, 0x77, 0x96, 0xd2, 0x33,
+ 0xbb, 0x61, 0xb5, 0x80, 0x7e, 0x05, 0x15, 0xff, 0xc7, 0x66, 0x74, 0x27, 0x9c, 0x1f, 0xfb, 0x0d,
+ 0x5b, 0x59, 0x4b, 0xd0, 0xc3, 0xd5, 0x2f, 0xa0, 0x1e, 0xe9, 0x73, 0x51, 0xf4, 0x06, 0x98, 0xe9,
+ 0x5f, 0xa5, 0x07, 0x53, 0x1a, 0x63, 0xbe, 0xcb, 0xdf, 0xc3, 0xc6, 0xbc, 0xa6, 0x13, 0x3d, 0x9d,
+ 0x97, 0xb8, 0xb3, 0xda, 0x9e, 0x7d, 0xda, 0xe4, 0x70, 0x23, 0x67, 0x70, 0x23, 0xd6, 0x48, 0xc9,
+ 0x82, 0x9b, 0xd6, 0xdf, 0xca, 0x82, 0x9b, 0xda, 0x7d, 0xf1, 0xed, 0x60, 0x58, 0x4d, 0x7b, 0x4a,
+ 0xa3, 0x87, 0x32, 0xbd, 0x33, 0xdb, 0x01, 0xe5, 0xd1, 0xfc, 0x49, 0x11, 0x35, 0xdf, 0xc1, 0x72,
+ 0xa2, 0x17, 0x91, 0xb9, 0x91, 0xd5, 0x1e, 0xc9, 0xdc, 0xc8, 0x6c, 0x64, 0xb8, 0xf4, 0xf7, 0x80,
+ 0x92, 0x40, 0x1f, 0x8a, 0xbc, 0x12, 0x33, 0x90, 0x46, 0x59, 0x91, 0xb3, 0x71, 0xc2, 0xc7, 0xdc,
+ 0xf8, 0x04, 0xb2, 0x27, 0x8d, 0xcf, 0x02, 0x11, 0xa5, 0xf1, 0x99, 0xb0, 0x20, 0x37, 0xfe, 0x39,
+ 0x54, 0x83, 0x67, 0xb8, 0xbc, 0x85, 0x67, 0x5a, 0x0c, 0x79, 0x0b, 0xcf, 0xbe, 0xd8, 0xd5, 0xc2,
+ 0xc5, 0x12, 0xff, 0x57, 0xcf, 0xee, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x6a, 0xfe, 0x83, 0x54,
+ 0x07, 0x24, 0x00, 0x00,
}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/shared.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/shared.pb.go
index 98f81482d..aa3a343a0 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/shared.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/shared.pb.go
@@ -47,7 +47,7 @@ func (m *Repository) Reset() { *m = Repository{} }
func (m *Repository) String() string { return proto.CompactTextString(m) }
func (*Repository) ProtoMessage() {}
func (*Repository) Descriptor() ([]byte, []int) {
- return fileDescriptor_shared_7a2b49cc52ea76da, []int{0}
+ return fileDescriptor_shared_00e989e93ebea13d, []int{0}
}
func (m *Repository) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Repository.Unmarshal(m, b)
@@ -130,7 +130,7 @@ func (m *GitCommit) Reset() { *m = GitCommit{} }
func (m *GitCommit) String() string { return proto.CompactTextString(m) }
func (*GitCommit) ProtoMessage() {}
func (*GitCommit) Descriptor() ([]byte, []int) {
- return fileDescriptor_shared_7a2b49cc52ea76da, []int{1}
+ return fileDescriptor_shared_00e989e93ebea13d, []int{1}
}
func (m *GitCommit) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GitCommit.Unmarshal(m, b)
@@ -212,7 +212,7 @@ func (m *CommitAuthor) Reset() { *m = CommitAuthor{} }
func (m *CommitAuthor) String() string { return proto.CompactTextString(m) }
func (*CommitAuthor) ProtoMessage() {}
func (*CommitAuthor) Descriptor() ([]byte, []int) {
- return fileDescriptor_shared_7a2b49cc52ea76da, []int{2}
+ return fileDescriptor_shared_00e989e93ebea13d, []int{2}
}
func (m *CommitAuthor) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitAuthor.Unmarshal(m, b)
@@ -264,7 +264,7 @@ func (m *ExitStatus) Reset() { *m = ExitStatus{} }
func (m *ExitStatus) String() string { return proto.CompactTextString(m) }
func (*ExitStatus) ProtoMessage() {}
func (*ExitStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_shared_7a2b49cc52ea76da, []int{3}
+ return fileDescriptor_shared_00e989e93ebea13d, []int{3}
}
func (m *ExitStatus) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExitStatus.Unmarshal(m, b)
@@ -304,7 +304,7 @@ func (m *Branch) Reset() { *m = Branch{} }
func (m *Branch) String() string { return proto.CompactTextString(m) }
func (*Branch) ProtoMessage() {}
func (*Branch) Descriptor() ([]byte, []int) {
- return fileDescriptor_shared_7a2b49cc52ea76da, []int{4}
+ return fileDescriptor_shared_00e989e93ebea13d, []int{4}
}
func (m *Branch) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Branch.Unmarshal(m, b)
@@ -357,7 +357,7 @@ func (m *Tag) Reset() { *m = Tag{} }
func (m *Tag) String() string { return proto.CompactTextString(m) }
func (*Tag) ProtoMessage() {}
func (*Tag) Descriptor() ([]byte, []int) {
- return fileDescriptor_shared_7a2b49cc52ea76da, []int{5}
+ return fileDescriptor_shared_00e989e93ebea13d, []int{5}
}
func (m *Tag) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Tag.Unmarshal(m, b)
@@ -433,7 +433,7 @@ func (m *User) Reset() { *m = User{} }
func (m *User) String() string { return proto.CompactTextString(m) }
func (*User) ProtoMessage() {}
func (*User) Descriptor() ([]byte, []int) {
- return fileDescriptor_shared_7a2b49cc52ea76da, []int{6}
+ return fileDescriptor_shared_00e989e93ebea13d, []int{6}
}
func (m *User) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_User.Unmarshal(m, b)
@@ -481,6 +481,44 @@ func (m *User) GetGlUsername() string {
return ""
}
+type ObjectPool 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 *ObjectPool) Reset() { *m = ObjectPool{} }
+func (m *ObjectPool) String() string { return proto.CompactTextString(m) }
+func (*ObjectPool) ProtoMessage() {}
+func (*ObjectPool) Descriptor() ([]byte, []int) {
+ return fileDescriptor_shared_00e989e93ebea13d, []int{7}
+}
+func (m *ObjectPool) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ObjectPool.Unmarshal(m, b)
+}
+func (m *ObjectPool) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ObjectPool.Marshal(b, m, deterministic)
+}
+func (dst *ObjectPool) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ObjectPool.Merge(dst, src)
+}
+func (m *ObjectPool) XXX_Size() int {
+ return xxx_messageInfo_ObjectPool.Size(m)
+}
+func (m *ObjectPool) XXX_DiscardUnknown() {
+ xxx_messageInfo_ObjectPool.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ObjectPool proto.InternalMessageInfo
+
+func (m *ObjectPool) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
func init() {
proto.RegisterType((*Repository)(nil), "gitaly.Repository")
proto.RegisterType((*GitCommit)(nil), "gitaly.GitCommit")
@@ -489,48 +527,51 @@ func init() {
proto.RegisterType((*Branch)(nil), "gitaly.Branch")
proto.RegisterType((*Tag)(nil), "gitaly.Tag")
proto.RegisterType((*User)(nil), "gitaly.User")
-}
-
-func init() { proto.RegisterFile("shared.proto", fileDescriptor_shared_7a2b49cc52ea76da) }
-
-var fileDescriptor_shared_7a2b49cc52ea76da = []byte{
- // 603 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x53, 0x51, 0x6f, 0xd3, 0x3c,
- 0x14, 0x55, 0xd2, 0xb4, 0x6b, 0x6f, 0xb3, 0xef, 0x1b, 0x66, 0x0f, 0xd1, 0xd0, 0xb4, 0x12, 0x24,
- 0xb4, 0x07, 0x94, 0xa1, 0x22, 0xf1, 0xbe, 0x01, 0x9a, 0xb6, 0x07, 0x98, 0xb2, 0xed, 0x85, 0x97,
- 0xc8, 0x6d, 0xee, 0x5c, 0x23, 0xa7, 0x89, 0xec, 0xdb, 0x89, 0xed, 0x47, 0xf1, 0x4b, 0xf8, 0x1f,
- 0xfc, 0x0d, 0x64, 0x3b, 0x29, 0x03, 0x0a, 0xe2, 0xcd, 0x3e, 0x3e, 0xbe, 0xbe, 0xe7, 0x9e, 0x63,
- 0x88, 0xcd, 0x82, 0x6b, 0x2c, 0xb3, 0x46, 0xd7, 0x54, 0xb3, 0x81, 0x90, 0xc4, 0xd5, 0xdd, 0xde,
- 0x81, 0xa8, 0x6b, 0xa1, 0xf0, 0xc8, 0xa1, 0xb3, 0xd5, 0xcd, 0x11, 0xc9, 0x0a, 0x0d, 0xf1, 0xaa,
- 0xf1, 0xc4, 0xf4, 0x4b, 0x08, 0x90, 0x63, 0x53, 0x1b, 0x49, 0xb5, 0xbe, 0x63, 0x4f, 0x21, 0x36,
- 0x54, 0x6b, 0x2e, 0xb0, 0x58, 0xf2, 0x0a, 0x93, 0x70, 0x12, 0x1c, 0x8e, 0xf2, 0x71, 0x8b, 0xbd,
- 0xe7, 0x15, 0xb2, 0x67, 0xb0, 0xad, 0x51, 0x71, 0x92, 0xb7, 0x58, 0x34, 0x9c, 0x16, 0x49, 0xcf,
- 0x71, 0xe2, 0x0e, 0xbc, 0xe0, 0xb4, 0x60, 0x2f, 0x61, 0x57, 0x48, 0x2a, 0xea, 0xd9, 0x27, 0x9c,
- 0x53, 0x51, 0x4a, 0x8d, 0x73, 0x5b, 0x3f, 0x89, 0x1c, 0x97, 0x09, 0x49, 0x1f, 0xdc, 0xd1, 0xdb,
- 0xee, 0x84, 0x9d, 0xc2, 0xc4, 0xde, 0xe0, 0x8a, 0x50, 0x2f, 0x39, 0xe1, 0xaf, 0x77, 0x25, 0x9a,
- 0xa4, 0x3f, 0xe9, 0x1d, 0x8e, 0xf2, 0x7d, 0x21, 0xe9, 0xb8, 0xa3, 0xfd, 0x5c, 0x46, 0xa2, 0xb1,
- 0xfd, 0x09, 0x55, 0xe8, 0xb5, 0xa6, 0x64, 0xe0, 0xfb, 0x13, 0xea, 0x81, 0xce, 0xe7, 0xf0, 0xbf,
- 0x50, 0x45, 0xa3, 0x6b, 0xf7, 0x86, 0x93, 0x31, 0x74, 0xb4, 0x6d, 0xa1, 0x2e, 0x3c, 0x6a, 0x75,
- 0x9c, 0x47, 0xc3, 0x60, 0x27, 0x3c, 0x8f, 0x86, 0x5b, 0x3b, 0xc3, 0x3c, 0xb2, 0xb4, 0xf4, 0x5b,
- 0x00, 0xa3, 0x53, 0x49, 0x6f, 0xea, 0xaa, 0x92, 0xc4, 0xfe, 0x83, 0x50, 0x96, 0x49, 0xe0, 0xae,
- 0x86, 0xb2, 0x64, 0x09, 0x6c, 0x99, 0x95, 0x6b, 0xc9, 0x8d, 0x2e, 0xce, 0xbb, 0x2d, 0x63, 0x10,
- 0xcd, 0xea, 0xf2, 0xce, 0x4d, 0x2b, 0xce, 0xdd, 0x9a, 0xbd, 0x80, 0x01, 0x5f, 0xd1, 0xa2, 0xd6,
- 0x6e, 0x2e, 0xe3, 0xe9, 0x6e, 0xe6, 0x6d, 0xcb, 0x7c, 0xf5, 0x63, 0x77, 0x96, 0xb7, 0x1c, 0x36,
- 0x85, 0xd1, 0xdc, 0xe1, 0x84, 0x3a, 0xe9, 0xff, 0xe5, 0xc2, 0x0f, 0x1a, 0xdb, 0x07, 0x68, 0xb8,
- 0xc6, 0x25, 0x15, 0xb2, 0x34, 0xc9, 0xc0, 0xcd, 0x6f, 0xe4, 0x91, 0xb3, 0xd2, 0xb0, 0x27, 0x30,
- 0xb2, 0x8d, 0x14, 0x46, 0xde, 0x63, 0xb2, 0x35, 0x09, 0x0e, 0x7b, 0xf9, 0xd0, 0x02, 0x97, 0xf2,
- 0x1e, 0xd3, 0x05, 0xc4, 0x0f, 0xcb, 0x5a, 0x05, 0x2e, 0x13, 0x81, 0x57, 0x60, 0xd7, 0x6c, 0x17,
- 0xfa, 0x58, 0x71, 0xa9, 0x5a, 0xb5, 0x7e, 0xc3, 0x32, 0x88, 0x4a, 0x4e, 0xe8, 0xb4, 0x8e, 0xa7,
- 0x7b, 0x99, 0x0f, 0x61, 0xd6, 0x85, 0x30, 0xbb, 0xea, 0x42, 0x98, 0x3b, 0x5e, 0x9a, 0x02, 0xbc,
- 0xfb, 0x2c, 0xe9, 0x92, 0x38, 0xad, 0x8c, 0xad, 0x79, 0xcb, 0xd5, 0xca, 0x3f, 0xd4, 0xcf, 0xfd,
- 0x26, 0xbd, 0x82, 0xc1, 0x89, 0xe6, 0xcb, 0xf9, 0x62, 0x63, 0x1f, 0xaf, 0x61, 0x9b, 0xb8, 0x16,
- 0x48, 0x85, 0xd7, 0xee, 0xfa, 0x19, 0x4f, 0x1f, 0x75, 0xf3, 0x59, 0x3b, 0x96, 0xc7, 0x9e, 0xe7,
- 0x77, 0xe9, 0xd7, 0x00, 0x7a, 0x57, 0x5c, 0x6c, 0xac, 0xe9, 0xbd, 0x0d, 0xd7, 0xde, 0xfe, 0xf6,
- 0x46, 0xef, 0x9f, 0xde, 0xb0, 0x99, 0xa8, 0xd0, 0x18, 0x2e, 0xd0, 0xd9, 0x1c, 0xe7, 0xdd, 0xd6,
- 0xfe, 0xb6, 0x76, 0xe9, 0x1d, 0xe8, 0x3b, 0x07, 0xc6, 0x2d, 0x66, 0x4d, 0xb0, 0x11, 0x21, 0x2e,
- 0x04, 0x6a, 0x17, 0xe3, 0x3f, 0x46, 0xc4, 0x73, 0xd2, 0x1b, 0x88, 0xae, 0x0d, 0x6a, 0xf6, 0x18,
- 0xfa, 0x42, 0x15, 0xeb, 0x64, 0x46, 0x42, 0x9d, 0x95, 0x6b, 0x8d, 0xe1, 0x26, 0xff, 0x7a, 0x0f,
- 0xfd, 0x3b, 0x80, 0xb1, 0x50, 0xc5, 0xca, 0xd8, 0x2f, 0x56, 0x61, 0xfb, 0x69, 0x41, 0xa8, 0xeb,
- 0x16, 0x39, 0x81, 0x8f, 0x43, 0xdf, 0x46, 0x33, 0x9b, 0x0d, 0x9c, 0xad, 0xaf, 0xbe, 0x07, 0x00,
- 0x00, 0xff, 0xff, 0x70, 0x8f, 0xde, 0xf3, 0x81, 0x04, 0x00, 0x00,
+ proto.RegisterType((*ObjectPool)(nil), "gitaly.ObjectPool")
+}
+
+func init() { proto.RegisterFile("shared.proto", fileDescriptor_shared_00e989e93ebea13d) }
+
+var fileDescriptor_shared_00e989e93ebea13d = []byte{
+ // 629 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x53, 0xd1, 0x6e, 0x13, 0x3b,
+ 0x10, 0xd5, 0x26, 0x9b, 0x34, 0x99, 0x6c, 0xef, 0xed, 0xf5, 0xed, 0xc3, 0xaa, 0x57, 0x55, 0x73,
+ 0x17, 0x09, 0xf5, 0x01, 0xa5, 0x28, 0x48, 0x3c, 0xd3, 0x02, 0xaa, 0xda, 0x07, 0xa8, 0xb6, 0xed,
+ 0x0b, 0x2f, 0x2b, 0x27, 0x3b, 0x75, 0x8c, 0xbc, 0xf1, 0xca, 0x9e, 0x54, 0xb4, 0x1f, 0xc5, 0x97,
+ 0xf0, 0x1f, 0xfc, 0x06, 0xb2, 0xbd, 0x9b, 0x06, 0x28, 0x88, 0x37, 0xcf, 0xf8, 0x78, 0x3c, 0x67,
+ 0xce, 0x19, 0x48, 0xec, 0x82, 0x1b, 0x2c, 0x27, 0xb5, 0xd1, 0xa4, 0x59, 0x5f, 0x48, 0xe2, 0xea,
+ 0x6e, 0xef, 0x40, 0x68, 0x2d, 0x14, 0x1e, 0xf9, 0xec, 0x6c, 0x75, 0x73, 0x44, 0xb2, 0x42, 0x4b,
+ 0xbc, 0xaa, 0x03, 0x30, 0xfb, 0xdc, 0x01, 0xc8, 0xb1, 0xd6, 0x56, 0x92, 0x36, 0x77, 0xec, 0x7f,
+ 0x48, 0x2c, 0x69, 0xc3, 0x05, 0x16, 0x4b, 0x5e, 0x61, 0xda, 0x19, 0x47, 0x87, 0xc3, 0x7c, 0xd4,
+ 0xe4, 0xde, 0xf1, 0x0a, 0xd9, 0x13, 0xd8, 0x36, 0xa8, 0x38, 0xc9, 0x5b, 0x2c, 0x6a, 0x4e, 0x8b,
+ 0xb4, 0xeb, 0x31, 0x49, 0x9b, 0xbc, 0xe0, 0xb4, 0x60, 0xcf, 0x61, 0x57, 0x48, 0x2a, 0xf4, 0xec,
+ 0x23, 0xce, 0xa9, 0x28, 0xa5, 0xc1, 0xb9, 0xab, 0x9f, 0xc6, 0x1e, 0xcb, 0x84, 0xa4, 0xf7, 0xfe,
+ 0xea, 0x4d, 0x7b, 0xc3, 0x4e, 0x61, 0xec, 0x5e, 0x70, 0x45, 0x68, 0x96, 0x9c, 0xf0, 0xc7, 0xb7,
+ 0x12, 0x6d, 0xda, 0x1b, 0x77, 0x0f, 0x87, 0xf9, 0xbe, 0x90, 0x74, 0xdc, 0xc2, 0xbe, 0x2f, 0x23,
+ 0xd1, 0xba, 0xfe, 0x84, 0x2a, 0xcc, 0x9a, 0x53, 0xda, 0x0f, 0xfd, 0x09, 0xb5, 0xc1, 0xf3, 0x29,
+ 0xfc, 0x2d, 0x54, 0x51, 0x1b, 0xed, 0xff, 0xf0, 0x34, 0x06, 0x1e, 0xb6, 0x2d, 0xd4, 0x45, 0xc8,
+ 0x3a, 0x1e, 0xe7, 0xf1, 0x20, 0xda, 0xe9, 0x9c, 0xc7, 0x83, 0xad, 0x9d, 0x41, 0x1e, 0x3b, 0x58,
+ 0xf6, 0x35, 0x82, 0xe1, 0xa9, 0xa4, 0xd7, 0xba, 0xaa, 0x24, 0xb1, 0xbf, 0xa0, 0x23, 0xcb, 0x34,
+ 0xf2, 0x4f, 0x3b, 0xb2, 0x64, 0x29, 0x6c, 0xd9, 0x95, 0x6f, 0xc9, 0x8f, 0x2e, 0xc9, 0xdb, 0x90,
+ 0x31, 0x88, 0x67, 0xba, 0xbc, 0xf3, 0xd3, 0x4a, 0x72, 0x7f, 0x66, 0xcf, 0xa0, 0xcf, 0x57, 0xb4,
+ 0xd0, 0xc6, 0xcf, 0x65, 0x34, 0xdd, 0x9d, 0x04, 0xd9, 0x26, 0xa1, 0xfa, 0xb1, 0xbf, 0xcb, 0x1b,
+ 0x0c, 0x9b, 0xc2, 0x70, 0xee, 0xf3, 0x84, 0x26, 0xed, 0xfd, 0xe6, 0xc1, 0x03, 0x8c, 0xed, 0x03,
+ 0xd4, 0xdc, 0xe0, 0x92, 0x0a, 0x59, 0xda, 0xb4, 0xef, 0xe7, 0x37, 0x0c, 0x99, 0xb3, 0xd2, 0xb2,
+ 0xff, 0x60, 0xe8, 0x1a, 0x29, 0xac, 0xbc, 0xc7, 0x74, 0x6b, 0x1c, 0x1d, 0x76, 0xf3, 0x81, 0x4b,
+ 0x5c, 0xca, 0x7b, 0xcc, 0x16, 0x90, 0x6c, 0x96, 0x75, 0x0c, 0xbc, 0x27, 0xa2, 0xc0, 0xc0, 0x9d,
+ 0xd9, 0x2e, 0xf4, 0xb0, 0xe2, 0x52, 0x35, 0x6c, 0x43, 0xc0, 0x26, 0x10, 0x97, 0x9c, 0xd0, 0x73,
+ 0x1d, 0x4d, 0xf7, 0x26, 0xc1, 0x84, 0x93, 0xd6, 0x84, 0x93, 0xab, 0xd6, 0x84, 0xb9, 0xc7, 0x65,
+ 0x19, 0xc0, 0xdb, 0x4f, 0x92, 0x2e, 0x89, 0xd3, 0xca, 0xba, 0x9a, 0xb7, 0x5c, 0xad, 0xc2, 0x47,
+ 0xbd, 0x3c, 0x04, 0xd9, 0x15, 0xf4, 0x4f, 0x0c, 0x5f, 0xce, 0x17, 0x8f, 0xf6, 0xf1, 0x12, 0xb6,
+ 0x89, 0x1b, 0x81, 0x54, 0x04, 0xee, 0xbe, 0x9f, 0xd1, 0xf4, 0x9f, 0x76, 0x3e, 0x6b, 0xc5, 0xf2,
+ 0x24, 0xe0, 0x42, 0x94, 0x7d, 0x89, 0xa0, 0x7b, 0xc5, 0xc5, 0xa3, 0x35, 0x83, 0xb6, 0x9d, 0xb5,
+ 0xb6, 0x3f, 0xfd, 0xd1, 0xfd, 0xa3, 0x3f, 0x9c, 0x27, 0x2a, 0xb4, 0x96, 0x0b, 0xf4, 0x32, 0x27,
+ 0x79, 0x1b, 0xba, 0x6d, 0x6b, 0x8e, 0x41, 0x81, 0x9e, 0x57, 0x60, 0xd4, 0xe4, 0x9c, 0x08, 0xce,
+ 0x22, 0xc4, 0x85, 0x40, 0xe3, 0x6d, 0xfc, 0x4b, 0x8b, 0x04, 0x4c, 0x76, 0x03, 0xf1, 0xb5, 0x45,
+ 0xc3, 0xfe, 0x85, 0x9e, 0x50, 0xc5, 0xda, 0x99, 0xb1, 0x50, 0x67, 0xe5, 0x9a, 0x63, 0xe7, 0x31,
+ 0xfd, 0xba, 0x9b, 0xfa, 0x1d, 0xc0, 0x48, 0xa8, 0x62, 0x65, 0xdd, 0x8a, 0x55, 0xd8, 0x2c, 0x2d,
+ 0x08, 0x75, 0xdd, 0x64, 0xb2, 0x57, 0x00, 0x61, 0xf1, 0x2e, 0xb4, 0x56, 0x6c, 0x0a, 0xb0, 0xb1,
+ 0x6e, 0x91, 0xef, 0x93, 0xb5, 0x7d, 0x3e, 0x2c, 0x5d, 0xbe, 0x81, 0x3a, 0x81, 0x0f, 0x83, 0x00,
+ 0xa8, 0x67, 0xb3, 0xbe, 0x37, 0xc6, 0x8b, 0x6f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x41, 0x1f, 0x9f,
+ 0xf6, 0xc3, 0x04, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 8552f5a8c..64ca3b25b 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -485,12 +485,12 @@
"revisionTime": "2018-11-02T16:30:54Z"
},
{
- "checksumSHA1": "pPdDKql6e61B46RD1vrjUOXXZFs=",
+ "checksumSHA1": "1jQpFgPUfpQIXB+xAFkG93CibrE=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb",
- "revision": "5a6b2cb914313dcb6e90c50deec98c294e3d5788",
- "revisionTime": "2019-02-27T11:19:13Z",
- "version": "v1.13.0",
- "versionExact": "v1.13.0"
+ "revision": "3af1b8b22e630206bb1451307a92696b45a864ff",
+ "revisionTime": "2019-03-01T18:34:55Z",
+ "version": "v1.14.0",
+ "versionExact": "v1.14.0"
},
{
"checksumSHA1": "WMOuBgCyclqy+Mqunb0NbykaC4Y=",