Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Cai <jcai@gitlab.com>2019-03-08 21:39:17 +0300
committerJohn Cai <jcai@gitlab.com>2019-03-12 04:32:56 +0300
commite46e47a54f1d55e57a25bc91110e1eb720dcf026 (patch)
tree512588265a6552302154ff038b8d245af069627d
parentf83eef762996a646eeb2dcfe1cd63e2de3d52b6c (diff)
Update PreFetch to GeoFetchWithPooljc-pre-fetch-to-pool-repo-fetch
GeoFetchWithPool not only does a pre fetch, but will also fetch from the remote all in the same RPC
-rw-r--r--internal/service/repository/fetch_with_pool.go236
-rw-r--r--internal/service/repository/fetch_with_pool_test.go (renamed from internal/service/repository/pre_fetch_test.go)45
-rw-r--r--internal/service/repository/pre_fetch.go155
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go601
-rw-r--r--vendor/vendor.json10
5 files changed, 589 insertions, 458 deletions
diff --git a/internal/service/repository/fetch_with_pool.go b/internal/service/repository/fetch_with_pool.go
new file mode 100644
index 000000000..4f5f387d8
--- /dev/null
+++ b/internal/service/repository/fetch_with_pool.go
@@ -0,0 +1,236 @@
+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"
+ "gitlab.com/gitlab-org/gitaly/internal/rubyserver"
+)
+
+const (
+ //GeoRemoteName is the temporary remote name we use for fetching
+ GeoRemoteName = "geo"
+)
+
+func (s *server) GeoFetchWithPool(ctx context.Context, req *gitalypb.GeoFetchWithPoolRequest) (*gitalypb.GeoFetchWithPoolResponse, error) {
+ if err := validateGeoFetchWithPoolRequest(req); err != nil {
+ return nil, helper.ErrInvalidArgument(err)
+ }
+
+ if err := validateGeoFetchWithPoolPrecondition(req); err != nil {
+ return nil, helper.ErrPreconditionFailed(err)
+ }
+
+ // pre fetch from the fork source
+ tmpRepo, err := preFetch(ctx, req)
+ if err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ _, err = s.SetConfig(ctx, &gitalypb.SetConfigRequest{
+ Repository: tmpRepo,
+ Entries: []*gitalypb.SetConfigRequest_Entry{req.GetJwtAuthenticationHeader()},
+ })
+ if err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+ defer func() {
+ _, err = s.DeleteConfig(ctx, &gitalypb.DeleteConfigRequest{
+ Repository: req.GetTargetRepository(),
+ Keys: []string{req.GetJwtAuthenticationHeader().GetKey()},
+ })
+ }()
+
+ tmpRepoDir, err := helper.GetPath(tmpRepo)
+ if err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+ defer os.RemoveAll(tmpRepoDir)
+
+ // add the remote
+ if err := s.addRemote(ctx, tmpRepo, GeoRemoteName, req.GetRemoteUrl()); err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ // fetch
+ if err := s.fetchRemote(ctx, tmpRepo, GeoRemoteName); err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ // rename
+ targetRepositoryFullPath, err := helper.GetPath(req.GetTargetRepository())
+ if err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ if err := os.Rename(tmpRepoDir, targetRepositoryFullPath); err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ return &gitalypb.GeoFetchWithPoolResponse{}, nil
+}
+
+func validateGeoFetchWithPoolRequest(req *gitalypb.GeoFetchWithPoolRequest) 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")
+ }
+
+ if req.GetRemoteUrl() == "" {
+ return errors.New("missing remote url")
+ }
+
+ return nil
+}
+
+func validateGeoFetchWithPoolPrecondition(req *gitalypb.GeoFetchWithPoolRequest) 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.GeoFetchWithPoolRequest) (*gitalypb.Repository, error) {
+ targetRepository, sourceRepository := req.GetTargetRepository(), req.GetSourceRepository()
+
+ sourceRepositoryFullPath, err := helper.GetPath(sourceRepository)
+ if err != nil {
+ return nil, fmt.Errorf("getting source repository path: %v", err)
+ }
+
+ targetPath, err := helper.GetPath(targetRepository)
+ if err != nil {
+ return nil, fmt.Errorf("getting target repository path: %v", err)
+ }
+
+ dir := filepath.Dir(targetPath)
+
+ tmpRepoDir, err := ioutil.TempDir(dir, "repo")
+ if err != nil {
+ return nil, fmt.Errorf("creating temp directory for repo: %v", err)
+ }
+
+ storagePath, err := helper.GetStorageByName(targetRepository.GetStorageName())
+ if err != nil {
+ return nil, fmt.Errorf("getting storage path for target repo: %v", err)
+ }
+
+ relativePath, err := filepath.Rel(storagePath, tmpRepoDir)
+ if err != nil {
+ return nil, 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 nil, fmt.Errorf("clone command: %v", err)
+ }
+
+ if err := cmd.Wait(); err != nil {
+ return nil, fmt.Errorf("clone command: %v", err)
+ }
+
+ objectPool, err := objectpool.FromProto(req.GetObjectPool())
+ if err != nil {
+ return nil, 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 nil, fmt.Errorf("linking: %v", err)
+ }
+
+ return tmpRepo, nil
+}
+
+func (s *server) addRemote(ctx context.Context, repository *gitalypb.Repository, name, url string) error {
+ client, err := s.RemoteServiceClient(ctx)
+ if err != nil {
+ return err
+ }
+
+ clientCtx, err := rubyserver.SetHeaders(ctx, repository)
+ if err != nil {
+ return err
+ }
+
+ if _, err = client.AddRemote(clientCtx, &gitalypb.AddRemoteRequest{
+ Repository: repository,
+ Name: name,
+ Url: url, //need to set url here
+ MirrorRefmaps: []string{"all_refs"},
+ }); err != nil {
+ return err
+ }
+ return nil
+}
+
+func (s *server) fetchRemote(ctx context.Context, repository *gitalypb.Repository, remoteName string) error {
+ // fetch the remote
+ fetchRemoteRequest := &gitalypb.FetchRemoteRequest{
+ Repository: repository,
+ Remote: remoteName,
+ Force: false,
+ Timeout: 1000,
+ }
+
+ _, err := s.FetchRemote(ctx, fetchRemoteRequest)
+ return err
+}
diff --git a/internal/service/repository/pre_fetch_test.go b/internal/service/repository/fetch_with_pool_test.go
index 9f23bcf80..07639dbb2 100644
--- a/internal/service/repository/pre_fetch_test.go
+++ b/internal/service/repository/fetch_with_pool_test.go
@@ -42,7 +42,7 @@ func getGitObjectDirSize(t *testing.T, repoPath string) int64 {
return blocks
}
-func TestPreFetch(t *testing.T) {
+func TestGeoFetchWithPool(t *testing.T) {
server, serverSocketPath := runRepoServer(t)
defer server.Stop()
@@ -52,6 +52,13 @@ func TestPreFetch(t *testing.T) {
ctx, cancel := testhelper.Context()
defer cancel()
+ _, remoteRepoPath, cleanupRemoteRepo := testhelper.NewTestRepo(t)
+ defer cleanupRemoteRepo()
+
+ // add a branch
+ branch := "my-cool-branch"
+ testhelper.MustRunCommand(t, nil, "git", "-C", remoteRepoPath, "update-ref", "refs/heads/"+branch, "master")
+
testRepo, testRepoPath, cleanupFn := testhelper.NewTestRepo(t)
defer cleanupFn()
@@ -66,15 +73,20 @@ func TestPreFetch(t *testing.T) {
forkedRepo, forkRepoPath, forkRepoCleanup := getForkDestination(t)
defer forkRepoCleanup()
- req := &gitalypb.PreFetchRequest{
+ req := &gitalypb.GeoFetchWithPoolRequest{
TargetRepository: forkedRepo,
SourceRepository: testRepo,
ObjectPool: &gitalypb.ObjectPool{
Repository: poolRepo,
},
+ RemoteUrl: remoteRepoPath,
+ JwtAuthenticationHeader: &gitalypb.SetConfigRequest_Entry{
+ Key: "http.remote_url.extraHeader",
+ Value: &gitalypb.SetConfigRequest_Entry_ValueStr{ValueStr: "Authorization: blahblahblah"},
+ },
}
- _, err := client.PreFetch(ctx, req)
+ _, err := client.GeoFetchWithPool(ctx, req)
require.NoError(t, err)
assert.True(t, getGitObjectDirSize(t, forkRepoPath) < 40)
@@ -82,9 +94,10 @@ func TestPreFetch(t *testing.T) {
// 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")
+ testhelper.MustRunCommand(t, nil, "git", "-C", forkRepoPath, "show-ref", branch)
}
-func TestPreFetchValidationError(t *testing.T) {
+func TestGeoFetchWithPoolValidationError(t *testing.T) {
server, serverSocketPath := runRepoServer(t)
defer server.Stop()
@@ -116,6 +129,7 @@ func TestPreFetchValidationError(t *testing.T) {
sourceRepo *gitalypb.Repository
targetRepo *gitalypb.Repository
objectPool *gitalypb.Repository
+ remoteURL string
code codes.Code
}{
{
@@ -123,6 +137,7 @@ func TestPreFetchValidationError(t *testing.T) {
sourceRepo: nil,
targetRepo: forkedRepo,
objectPool: poolRepo,
+ remoteURL: "something",
code: codes.InvalidArgument,
},
{
@@ -130,6 +145,7 @@ func TestPreFetchValidationError(t *testing.T) {
sourceRepo: testRepo,
targetRepo: nil,
objectPool: poolRepo,
+ remoteURL: "something",
code: codes.InvalidArgument,
},
{
@@ -141,6 +157,7 @@ func TestPreFetchValidationError(t *testing.T) {
GlRepository: forkedRepo.GlRepository,
},
objectPool: poolRepo,
+ remoteURL: "something",
code: codes.InvalidArgument,
},
{
@@ -148,25 +165,39 @@ func TestPreFetchValidationError(t *testing.T) {
sourceRepo: testRepo,
targetRepo: forkedRepo,
objectPool: badPool,
+ remoteURL: "something",
code: codes.FailedPrecondition,
},
+ {
+ description: "remote url is empty",
+ sourceRepo: testRepo,
+ targetRepo: forkedRepo,
+ objectPool: poolRepo,
+ remoteURL: "",
+ code: codes.InvalidArgument,
+ },
}
for _, tc := range testCases {
t.Run(tc.description, func(t *testing.T) {
- _, err := client.PreFetch(ctx, &gitalypb.PreFetchRequest{
+ _, err := client.GeoFetchWithPool(ctx, &gitalypb.GeoFetchWithPoolRequest{
TargetRepository: tc.targetRepo,
SourceRepository: tc.sourceRepo,
ObjectPool: &gitalypb.ObjectPool{
Repository: tc.objectPool,
},
+ RemoteUrl: tc.remoteURL,
+ JwtAuthenticationHeader: &gitalypb.SetConfigRequest_Entry{
+ Key: "http.remote_url.extraHeader",
+ Value: &gitalypb.SetConfigRequest_Entry_ValueStr{ValueStr: "Authorization: blahblahblah"},
+ },
})
testhelper.RequireGrpcError(t, err, tc.code)
})
}
}
-func TestPreFetchDirectoryExists(t *testing.T) {
+func TestGeoFetchWithPoolDirectoryExists(t *testing.T) {
server, serverSocketPath := runRepoServer(t)
defer server.Stop()
@@ -182,6 +213,6 @@ func TestPreFetchDirectoryExists(t *testing.T) {
ctx, cancel := testhelper.Context()
defer cancel()
- _, err := client.PreFetch(ctx, &gitalypb.PreFetchRequest{TargetRepository: forkedRepo, SourceRepository: testRepo})
+ _, err := client.GeoFetchWithPool(ctx, &gitalypb.GeoFetchWithPoolRequest{TargetRepository: forkedRepo, SourceRepository: testRepo, RemoteUrl: "something"})
testhelper.RequireGrpcError(t, err, codes.FailedPrecondition)
}
diff --git a/internal/service/repository/pre_fetch.go b/internal/service/repository/pre_fetch.go
deleted file mode 100644
index 0c62b2eb5..000000000
--- a/internal/service/repository/pre_fetch.go
+++ /dev/null
@@ -1,155 +0,0 @@
-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/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 12f49f537..41e4784b0 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_e78248130d6ea2d6, []int{18, 0}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{63, 0, 0}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{0}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{1}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{2}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{3}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{4}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{5}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{6}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{7}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{8}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{9}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{10}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{11}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{12}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{13}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{14}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{15}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{16}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{17}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{18}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{19}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{20}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{21}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{22}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{23}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{24}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{25}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{26}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{27}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{28}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{29}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{30}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{31}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{32}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{33}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{34}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{35}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{36}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{37}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{38}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{39}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{40}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{41}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{42}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{42, 0}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{43}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{44}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{45}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{46}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{47}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{48}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{49}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{50}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{51}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{52}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{53}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{54}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{55}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{56}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{57}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{58}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{59}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{60}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{61}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{62}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{63}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{63, 0}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{64}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{65}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{66}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []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_e78248130d6ea2d6, []int{67}
+ return fileDescriptor_repository_service_7a253781fd841cf4, []int{67}
}
func (m *SearchFilesByContentResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByContentResponse.Unmarshal(m, b)
@@ -3157,89 +3157,105 @@ 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:"-"`
+type GeoFetchWithPoolRequest 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"`
+ RemoteUrl string `protobuf:"bytes,4,opt,name=remote_url,json=remoteUrl,proto3" json:"remote_url,omitempty"`
+ JwtAuthenticationHeader *SetConfigRequest_Entry `protobuf:"bytes,5,opt,name=jwt_authentication_header,json=jwtAuthenticationHeader,proto3" json:"jwt_authentication_header,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 *GeoFetchWithPoolRequest) Reset() { *m = GeoFetchWithPoolRequest{} }
+func (m *GeoFetchWithPoolRequest) String() string { return proto.CompactTextString(m) }
+func (*GeoFetchWithPoolRequest) ProtoMessage() {}
+func (*GeoFetchWithPoolRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_repository_service_7a253781fd841cf4, []int{68}
}
-func (m *PreFetchRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_PreFetchRequest.Unmarshal(m, b)
+func (m *GeoFetchWithPoolRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GeoFetchWithPoolRequest.Unmarshal(m, b)
}
-func (m *PreFetchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_PreFetchRequest.Marshal(b, m, deterministic)
+func (m *GeoFetchWithPoolRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GeoFetchWithPoolRequest.Marshal(b, m, deterministic)
}
-func (dst *PreFetchRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_PreFetchRequest.Merge(dst, src)
+func (dst *GeoFetchWithPoolRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GeoFetchWithPoolRequest.Merge(dst, src)
}
-func (m *PreFetchRequest) XXX_Size() int {
- return xxx_messageInfo_PreFetchRequest.Size(m)
+func (m *GeoFetchWithPoolRequest) XXX_Size() int {
+ return xxx_messageInfo_GeoFetchWithPoolRequest.Size(m)
}
-func (m *PreFetchRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_PreFetchRequest.DiscardUnknown(m)
+func (m *GeoFetchWithPoolRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_GeoFetchWithPoolRequest.DiscardUnknown(m)
}
-var xxx_messageInfo_PreFetchRequest proto.InternalMessageInfo
+var xxx_messageInfo_GeoFetchWithPoolRequest proto.InternalMessageInfo
-func (m *PreFetchRequest) GetSourceRepository() *Repository {
+func (m *GeoFetchWithPoolRequest) GetSourceRepository() *Repository {
if m != nil {
return m.SourceRepository
}
return nil
}
-func (m *PreFetchRequest) GetTargetRepository() *Repository {
+func (m *GeoFetchWithPoolRequest) GetTargetRepository() *Repository {
if m != nil {
return m.TargetRepository
}
return nil
}
-func (m *PreFetchRequest) GetObjectPool() *ObjectPool {
+func (m *GeoFetchWithPoolRequest) GetObjectPool() *ObjectPool {
if m != nil {
return m.ObjectPool
}
return nil
}
-type PreFetchResponse struct {
+func (m *GeoFetchWithPoolRequest) GetRemoteUrl() string {
+ if m != nil {
+ return m.RemoteUrl
+ }
+ return ""
+}
+
+func (m *GeoFetchWithPoolRequest) GetJwtAuthenticationHeader() *SetConfigRequest_Entry {
+ if m != nil {
+ return m.JwtAuthenticationHeader
+ }
+ return nil
+}
+
+type GeoFetchWithPoolResponse 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 *GeoFetchWithPoolResponse) Reset() { *m = GeoFetchWithPoolResponse{} }
+func (m *GeoFetchWithPoolResponse) String() string { return proto.CompactTextString(m) }
+func (*GeoFetchWithPoolResponse) ProtoMessage() {}
+func (*GeoFetchWithPoolResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_repository_service_7a253781fd841cf4, []int{69}
}
-func (m *PreFetchResponse) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_PreFetchResponse.Unmarshal(m, b)
+func (m *GeoFetchWithPoolResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GeoFetchWithPoolResponse.Unmarshal(m, b)
}
-func (m *PreFetchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_PreFetchResponse.Marshal(b, m, deterministic)
+func (m *GeoFetchWithPoolResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GeoFetchWithPoolResponse.Marshal(b, m, deterministic)
}
-func (dst *PreFetchResponse) XXX_Merge(src proto.Message) {
- xxx_messageInfo_PreFetchResponse.Merge(dst, src)
+func (dst *GeoFetchWithPoolResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GeoFetchWithPoolResponse.Merge(dst, src)
}
-func (m *PreFetchResponse) XXX_Size() int {
- return xxx_messageInfo_PreFetchResponse.Size(m)
+func (m *GeoFetchWithPoolResponse) XXX_Size() int {
+ return xxx_messageInfo_GeoFetchWithPoolResponse.Size(m)
}
-func (m *PreFetchResponse) XXX_DiscardUnknown() {
- xxx_messageInfo_PreFetchResponse.DiscardUnknown(m)
+func (m *GeoFetchWithPoolResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_GeoFetchWithPoolResponse.DiscardUnknown(m)
}
-var xxx_messageInfo_PreFetchResponse proto.InternalMessageInfo
+var xxx_messageInfo_GeoFetchWithPoolResponse proto.InternalMessageInfo
func init() {
proto.RegisterType((*RepositoryExistsRequest)(nil), "gitaly.RepositoryExistsRequest")
@@ -3312,8 +3328,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.RegisterType((*GeoFetchWithPoolRequest)(nil), "gitaly.GeoFetchWithPoolRequest")
+ proto.RegisterType((*GeoFetchWithPoolResponse)(nil), "gitaly.GeoFetchWithPoolResponse")
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)
}
@@ -3364,7 +3380,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)
+ GeoFetchWithPool(ctx context.Context, in *GeoFetchWithPoolRequest, opts ...grpc.CallOption) (*GeoFetchWithPoolResponse, error)
}
type repositoryServiceClient struct {
@@ -3915,9 +3931,9 @@ 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...)
+func (c *repositoryServiceClient) GeoFetchWithPool(ctx context.Context, in *GeoFetchWithPoolRequest, opts ...grpc.CallOption) (*GeoFetchWithPoolResponse, error) {
+ out := new(GeoFetchWithPoolResponse)
+ err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/GeoFetchWithPool", in, out, opts...)
if err != nil {
return nil, err
}
@@ -3960,7 +3976,7 @@ type RepositoryServiceServer interface {
SearchFilesByName(*SearchFilesByNameRequest, RepositoryService_SearchFilesByNameServer) error
RestoreCustomHooks(RepositoryService_RestoreCustomHooksServer) error
BackupCustomHooks(*BackupCustomHooksRequest, RepositoryService_BackupCustomHooksServer) error
- PreFetch(context.Context, *PreFetchRequest) (*PreFetchResponse, error)
+ GeoFetchWithPool(context.Context, *GeoFetchWithPoolRequest) (*GeoFetchWithPoolResponse, error)
}
func RegisterRepositoryServiceServer(s *grpc.Server, srv RepositoryServiceServer) {
@@ -4619,20 +4635,20 @@ 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)
+func _RepositoryService_GeoFetchWithPool_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(GeoFetchWithPoolRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
- return srv.(RepositoryServiceServer).PreFetch(ctx, in)
+ return srv.(RepositoryServiceServer).GeoFetchWithPool(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
- FullMethod: "/gitaly.RepositoryService/PreFetch",
+ FullMethod: "/gitaly.RepositoryService/GeoFetchWithPool",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(RepositoryServiceServer).PreFetch(ctx, req.(*PreFetchRequest))
+ return srv.(RepositoryServiceServer).GeoFetchWithPool(ctx, req.(*GeoFetchWithPoolRequest))
}
return interceptor(ctx, in, info, handler)
}
@@ -4738,8 +4754,8 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
Handler: _RepositoryService_CreateRepositoryFromSnapshot_Handler,
},
{
- MethodName: "PreFetch",
- Handler: _RepositoryService_PreFetch_Handler,
+ MethodName: "GeoFetchWithPool",
+ Handler: _RepositoryService_GeoFetchWithPool_Handler,
},
},
Streams: []grpc.StreamDesc{
@@ -4798,166 +4814,169 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
}
func init() {
- 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,
+ proto.RegisterFile("repository-service.proto", fileDescriptor_repository_service_7a253781fd841cf4)
+}
+
+var fileDescriptor_repository_service_7a253781fd841cf4 = []byte{
+ // 2554 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xef, 0x72, 0xdb, 0xc6,
+ 0x11, 0x27, 0x45, 0x51, 0x24, 0x97, 0x74, 0x42, 0x9d, 0x64, 0x8b, 0x84, 0x65, 0x4b, 0x86, 0x3d,
+ 0x89, 0xf3, 0xa7, 0x6a, 0x22, 0x7d, 0x68, 0x66, 0xda, 0x4e, 0x46, 0x22, 0x29, 0x89, 0xb6, 0xf5,
+ 0xa7, 0x90, 0x33, 0x9e, 0x6a, 0x92, 0xc1, 0x40, 0xe0, 0x51, 0x84, 0x09, 0xe2, 0x68, 0xe0, 0x68,
+ 0x45, 0xe9, 0xd7, 0x66, 0x26, 0x1f, 0xdb, 0x77, 0xe8, 0x13, 0xf4, 0x2d, 0x3a, 0xfd, 0xd8, 0xa7,
+ 0xe8, 0xf4, 0x25, 0x3a, 0x77, 0x07, 0xe0, 0x00, 0x02, 0x60, 0xdc, 0x81, 0xdb, 0x7e, 0xc3, 0xed,
+ 0xde, 0xed, 0xed, 0xed, 0xee, 0xed, 0xdd, 0xfe, 0x0e, 0xd0, 0x72, 0xf1, 0x94, 0x78, 0x16, 0x25,
+ 0xee, 0xed, 0x2f, 0x3c, 0xec, 0xbe, 0xb5, 0x4c, 0xbc, 0x33, 0x75, 0x09, 0x25, 0x68, 0xe5, 0xda,
+ 0xa2, 0x86, 0x7d, 0xab, 0x34, 0xbc, 0x91, 0xe1, 0xe2, 0x81, 0xa0, 0xaa, 0x27, 0xb0, 0xa1, 0x85,
+ 0x23, 0x7a, 0xdf, 0x5b, 0x1e, 0xf5, 0x34, 0xfc, 0x66, 0x86, 0x3d, 0x8a, 0x76, 0x01, 0xa4, 0xb0,
+ 0x56, 0x71, 0xbb, 0xf8, 0xb4, 0xbe, 0x8b, 0x76, 0x84, 0x94, 0x1d, 0x39, 0x48, 0x8b, 0xf4, 0x52,
+ 0x77, 0xa1, 0x95, 0x14, 0xe7, 0x4d, 0x89, 0xe3, 0x61, 0x74, 0x0f, 0x56, 0x30, 0xa7, 0x70, 0x59,
+ 0x55, 0xcd, 0x6f, 0xa9, 0xa7, 0x7c, 0x8c, 0x61, 0x8e, 0xfb, 0x8e, 0xe9, 0xe2, 0x09, 0x76, 0xa8,
+ 0x61, 0xe7, 0xd1, 0xe1, 0x3e, 0xb4, 0x53, 0xe4, 0x09, 0x25, 0x54, 0x1b, 0x56, 0x05, 0xf3, 0x70,
+ 0x66, 0xe7, 0x99, 0x05, 0x3d, 0x86, 0x3b, 0xa6, 0x8b, 0x0d, 0x8a, 0xf5, 0x2b, 0x8b, 0x4e, 0x8c,
+ 0x69, 0x6b, 0x89, 0x2f, 0xaa, 0x21, 0x88, 0x07, 0x9c, 0xa6, 0xae, 0x03, 0x8a, 0xce, 0xe6, 0xeb,
+ 0x30, 0x85, 0xbb, 0x47, 0x86, 0x7b, 0x65, 0x5c, 0xe3, 0x0e, 0xb1, 0x6d, 0x6c, 0xd2, 0xff, 0xba,
+ 0x1e, 0x2d, 0xb8, 0x37, 0x3f, 0xa3, 0xaf, 0x4b, 0x17, 0x3e, 0xe8, 0xd8, 0xd8, 0x70, 0x66, 0xd3,
+ 0x3c, 0x26, 0x5f, 0x85, 0x0f, 0x43, 0x29, 0xbe, 0xe0, 0xe7, 0x70, 0x57, 0x76, 0xbe, 0xb0, 0x7e,
+ 0xc0, 0x79, 0xe4, 0x7f, 0x0e, 0xf7, 0xe6, 0x85, 0xf9, 0x41, 0x85, 0x60, 0xd9, 0xb3, 0x7e, 0xc0,
+ 0x5c, 0x4e, 0x49, 0xe3, 0xdf, 0xea, 0x18, 0xda, 0xfb, 0xd3, 0xa9, 0x7d, 0x7b, 0x64, 0x51, 0x83,
+ 0x52, 0xd7, 0xba, 0x9a, 0x51, 0x9c, 0x27, 0xaa, 0x91, 0x02, 0x55, 0x17, 0xbf, 0xb5, 0x3c, 0x8b,
+ 0x38, 0xdc, 0xbc, 0x0d, 0x2d, 0x6c, 0xab, 0x9b, 0xa0, 0xa4, 0x4d, 0xe6, 0x5b, 0xe1, 0x8f, 0x4b,
+ 0x80, 0x0e, 0x31, 0x35, 0x47, 0x1a, 0x9e, 0x10, 0x9a, 0xc7, 0x06, 0x6c, 0xfb, 0xb8, 0x5c, 0x08,
+ 0x57, 0xa1, 0xa6, 0xf9, 0x2d, 0xb4, 0x0e, 0xe5, 0x21, 0x71, 0x4d, 0xdc, 0x2a, 0x71, 0xc7, 0x8b,
+ 0x06, 0xda, 0x80, 0x8a, 0x43, 0x74, 0x6a, 0x5c, 0x7b, 0xad, 0x65, 0xb1, 0xdb, 0x1c, 0xf2, 0xd2,
+ 0xb8, 0xf6, 0x50, 0x0b, 0x2a, 0xd4, 0x9a, 0x60, 0x32, 0xa3, 0xad, 0xf2, 0x76, 0xf1, 0x69, 0x59,
+ 0x0b, 0x9a, 0x6c, 0x88, 0xe7, 0x8d, 0xf4, 0x31, 0xbe, 0x6d, 0xad, 0x88, 0x19, 0x3c, 0x6f, 0xf4,
+ 0x1c, 0xdf, 0xa2, 0x2d, 0xa8, 0x8f, 0x1d, 0x72, 0xe3, 0xe8, 0x23, 0xc2, 0x76, 0x6f, 0x85, 0x33,
+ 0x81, 0x93, 0x8e, 0x19, 0x05, 0xb5, 0xa1, 0xea, 0x10, 0x7d, 0xea, 0xce, 0x1c, 0xdc, 0xaa, 0xf1,
+ 0xd9, 0x2a, 0x0e, 0x39, 0x67, 0xcd, 0x67, 0xcb, 0xd5, 0x6a, 0xb3, 0xa6, 0xde, 0x85, 0xb5, 0x98,
+ 0x15, 0x7c, 0xeb, 0x9c, 0xc0, 0x46, 0x87, 0x87, 0x69, 0x64, 0xc9, 0x39, 0xa2, 0x44, 0x81, 0x56,
+ 0x52, 0x9c, 0x3f, 0xd5, 0xbf, 0x8a, 0xb0, 0x7a, 0x84, 0xe9, 0xbe, 0x6b, 0x8e, 0xac, 0xb7, 0xb9,
+ 0xfc, 0x70, 0x1f, 0x6a, 0x26, 0x99, 0x4c, 0x2c, 0xaa, 0x5b, 0x03, 0xdf, 0x15, 0x55, 0x41, 0xe8,
+ 0x0f, 0x98, 0x93, 0xa6, 0x2e, 0x1e, 0x5a, 0xdf, 0x73, 0x6f, 0xd4, 0x34, 0xbf, 0x85, 0xbe, 0x82,
+ 0x95, 0x21, 0x71, 0x27, 0x06, 0xe5, 0xde, 0xf8, 0x60, 0x77, 0x3b, 0x98, 0x24, 0xa1, 0xd3, 0xce,
+ 0x21, 0xef, 0xa7, 0xf9, 0xfd, 0xd5, 0x3d, 0x58, 0x11, 0x14, 0x54, 0x81, 0xd2, 0x65, 0xff, 0xbc,
+ 0x59, 0x60, 0x1f, 0x2f, 0xf7, 0xb5, 0x66, 0x11, 0x01, 0xac, 0xbc, 0xdc, 0xd7, 0xf4, 0xa3, 0xcb,
+ 0xe6, 0x12, 0xaa, 0x43, 0x85, 0x7d, 0x1f, 0x5c, 0xee, 0x36, 0x4b, 0xea, 0x53, 0x40, 0x51, 0xc1,
+ 0x72, 0xaf, 0x0c, 0x0c, 0x6a, 0xf0, 0x75, 0x36, 0x34, 0xfe, 0xcd, 0x5c, 0x70, 0x6c, 0x78, 0x2f,
+ 0x88, 0x69, 0xd8, 0x07, 0xae, 0xe1, 0x98, 0xa3, 0x5c, 0x3b, 0x45, 0xfd, 0x02, 0x5a, 0x49, 0x71,
+ 0xfe, 0xf4, 0xeb, 0x50, 0x7e, 0x6b, 0xd8, 0x33, 0xec, 0xa7, 0x7f, 0xd1, 0x50, 0xff, 0x51, 0x84,
+ 0x16, 0x8f, 0x8d, 0x0b, 0x32, 0x73, 0x4d, 0x2c, 0x46, 0xe5, 0xf1, 0xcf, 0xd7, 0xb0, 0xea, 0x71,
+ 0x51, 0x7a, 0x64, 0xe8, 0x52, 0xe6, 0xd0, 0xa6, 0xe8, 0xac, 0xc5, 0x32, 0xaa, 0x2f, 0xe0, 0x8a,
+ 0x2b, 0xc3, 0x5d, 0xd9, 0xd0, 0x1a, 0x5e, 0x44, 0x41, 0xf4, 0x00, 0x80, 0x1a, 0xee, 0x35, 0xa6,
+ 0xba, 0x8b, 0x87, 0xdc, 0xa9, 0x0d, 0xad, 0x26, 0x28, 0x1a, 0x1e, 0xaa, 0x7b, 0xd0, 0x4e, 0x59,
+ 0x94, 0x3c, 0x08, 0x5d, 0xec, 0xcd, 0x6c, 0x1a, 0x1c, 0x84, 0xa2, 0xa5, 0xee, 0x43, 0xfd, 0xd0,
+ 0x33, 0xc7, 0x79, 0xec, 0xff, 0x04, 0x1a, 0x42, 0x84, 0xb4, 0x39, 0x76, 0x5d, 0xe2, 0xfa, 0x3e,
+ 0x17, 0x0d, 0xf5, 0xaf, 0x45, 0xf8, 0xf0, 0x95, 0x6b, 0xb1, 0x8d, 0x32, 0xcc, 0x63, 0xea, 0x26,
+ 0x94, 0xd8, 0xea, 0x45, 0x4a, 0x64, 0x9f, 0xb1, 0x4c, 0x59, 0x8a, 0x67, 0x4a, 0xf4, 0x08, 0x1a,
+ 0xc4, 0x1e, 0xe8, 0x21, 0x5f, 0x18, 0xad, 0x4e, 0xec, 0x81, 0x16, 0x74, 0x09, 0x73, 0x59, 0x39,
+ 0x92, 0xcb, 0x9e, 0x2d, 0x57, 0x57, 0x9a, 0x15, 0xb5, 0x05, 0x4d, 0xa9, 0xb3, 0x58, 0xde, 0xb3,
+ 0xe5, 0x6a, 0xb1, 0xb9, 0xa4, 0x8e, 0x60, 0xfd, 0xd0, 0x72, 0x06, 0x27, 0xd8, 0xbd, 0xc6, 0x07,
+ 0x86, 0x97, 0x6b, 0x77, 0x6f, 0x42, 0x2d, 0x50, 0xd0, 0x6b, 0x2d, 0x6d, 0x97, 0x98, 0x5b, 0x43,
+ 0x82, 0xfa, 0x19, 0xdc, 0x9d, 0x9b, 0x49, 0x6e, 0xad, 0x2b, 0xc3, 0x13, 0xa1, 0x5d, 0xd3, 0xf8,
+ 0xb7, 0xfa, 0x53, 0x11, 0x56, 0x45, 0x3e, 0x3a, 0x24, 0xee, 0xf8, 0xff, 0x19, 0xd2, 0xec, 0x1e,
+ 0x12, 0xd5, 0x24, 0xbc, 0x0b, 0xb5, 0xfb, 0x9e, 0x86, 0x99, 0xb2, 0x7d, 0xe7, 0xdc, 0x25, 0xd7,
+ 0x2e, 0xf6, 0xbc, 0x9c, 0xa9, 0xd1, 0xe5, 0xe2, 0x22, 0xa9, 0x51, 0x10, 0xfa, 0x03, 0xf5, 0xb7,
+ 0xa0, 0xa4, 0xcd, 0xe6, 0x1b, 0x70, 0x0b, 0xea, 0x96, 0xa3, 0x4f, 0x7d, 0xb2, 0xbf, 0x31, 0xc0,
+ 0x0a, 0x3b, 0x0a, 0x65, 0x2f, 0xde, 0xcc, 0x0c, 0x6f, 0xf4, 0xde, 0x94, 0xf5, 0xb8, 0xb8, 0x88,
+ 0xb2, 0x82, 0x10, 0x28, 0x9b, 0x9c, 0xed, 0x5d, 0x95, 0x1d, 0xc2, 0xc3, 0xf9, 0x93, 0xe8, 0xd0,
+ 0x25, 0x93, 0x6f, 0xb4, 0x17, 0x39, 0xb7, 0xdb, 0xcc, 0xb5, 0x7d, 0x5d, 0xd9, 0xa7, 0xfa, 0x08,
+ 0xb6, 0x32, 0xe7, 0xf1, 0x9d, 0xdc, 0x87, 0x35, 0xd1, 0xe5, 0x60, 0xe6, 0x0c, 0xec, 0x5c, 0xb7,
+ 0xb0, 0x4f, 0x61, 0x3d, 0x2e, 0x6a, 0xc1, 0xb9, 0x82, 0x01, 0xf1, 0xdd, 0xda, 0x21, 0xce, 0xd0,
+ 0xba, 0xce, 0xe9, 0xa7, 0xe1, 0xcc, 0xb6, 0xf5, 0xa9, 0x41, 0x47, 0x81, 0x9f, 0x18, 0xe1, 0xdc,
+ 0xa0, 0x23, 0xf5, 0x33, 0x58, 0x8b, 0x4d, 0xb3, 0x30, 0xed, 0xfd, 0xb4, 0x04, 0xcd, 0x0b, 0x4c,
+ 0xf3, 0xab, 0xf4, 0x15, 0x54, 0xb0, 0x43, 0x5d, 0x0b, 0x8b, 0x14, 0x51, 0xdf, 0x7d, 0x18, 0x0c,
+ 0x98, 0x17, 0xbf, 0xd3, 0x73, 0xa8, 0x7b, 0xab, 0x05, 0xdd, 0x95, 0x1f, 0x8b, 0x50, 0xe6, 0x24,
+ 0xe6, 0x4c, 0x76, 0xd3, 0x12, 0x09, 0x83, 0x7d, 0xa2, 0x07, 0x50, 0xe3, 0x47, 0xa2, 0xee, 0x51,
+ 0x57, 0x2c, 0xf4, 0xb8, 0xa0, 0x55, 0x39, 0xe9, 0x82, 0xba, 0xe8, 0x11, 0xd4, 0x05, 0xdb, 0x72,
+ 0xe8, 0xde, 0x2e, 0xcf, 0xae, 0xe5, 0xe3, 0x82, 0x06, 0x9c, 0xd8, 0x67, 0x34, 0xb4, 0x05, 0xa2,
+ 0xa5, 0x5f, 0x11, 0x62, 0x8b, 0x7b, 0xdf, 0x71, 0x41, 0x13, 0x52, 0x0f, 0x08, 0xb1, 0x0f, 0x2a,
+ 0xfe, 0x11, 0xac, 0xae, 0xc1, 0x6a, 0x44, 0x55, 0x3f, 0x54, 0xbe, 0x83, 0xb5, 0x2e, 0xb6, 0xf1,
+ 0xfb, 0x70, 0x1a, 0x82, 0xe5, 0x31, 0xbe, 0x15, 0xe6, 0xa9, 0x69, 0xfc, 0x5b, 0xbd, 0x07, 0xeb,
+ 0x71, 0xf1, 0xfe, 0xb4, 0x26, 0xab, 0xd7, 0x3c, 0x4a, 0x5c, 0xdc, 0x99, 0x79, 0x94, 0x4c, 0x8e,
+ 0x09, 0x19, 0x7b, 0x39, 0x27, 0xe7, 0xf1, 0xb8, 0x14, 0x89, 0xc7, 0x4d, 0x50, 0xd2, 0x26, 0xf1,
+ 0x55, 0x38, 0x85, 0xd6, 0x81, 0x61, 0x8e, 0x67, 0xd3, 0xf7, 0xa3, 0x81, 0xfa, 0x4b, 0x68, 0xa7,
+ 0xc8, 0x5b, 0xb0, 0x5d, 0xc6, 0xf0, 0x28, 0x6d, 0x23, 0xe7, 0xde, 0xb3, 0xa9, 0xb6, 0x78, 0x02,
+ 0xea, 0xa2, 0xc9, 0x7c, 0x9b, 0x1c, 0x03, 0x62, 0x67, 0xdd, 0x0b, 0xcb, 0xc4, 0x4e, 0xae, 0x33,
+ 0x55, 0xed, 0xc0, 0x5a, 0x4c, 0x92, 0x6f, 0x87, 0xcf, 0x01, 0xd9, 0x82, 0xa4, 0x7b, 0x23, 0xe2,
+ 0x52, 0xdd, 0x31, 0x26, 0xc1, 0x09, 0xda, 0xf4, 0x39, 0x17, 0x8c, 0x71, 0x6a, 0x4c, 0xb8, 0x8b,
+ 0x8e, 0x30, 0xed, 0x3b, 0x43, 0xb2, 0xff, 0x3e, 0x6a, 0x3a, 0xf5, 0xd7, 0xd0, 0x4e, 0x91, 0xe7,
+ 0xab, 0xf6, 0x10, 0x40, 0x16, 0x73, 0xbe, 0xa3, 0x22, 0x14, 0xa6, 0x4c, 0xc7, 0xb0, 0xcd, 0x99,
+ 0x6d, 0x50, 0xdc, 0x19, 0x61, 0x73, 0xec, 0xcd, 0x26, 0x79, 0x94, 0xf9, 0x15, 0xb4, 0x53, 0xe4,
+ 0xf9, 0xca, 0x28, 0x50, 0x35, 0x7d, 0x9a, 0x6f, 0x9d, 0xb0, 0xcd, 0x9c, 0x74, 0x84, 0xe9, 0x85,
+ 0x63, 0x4c, 0xbd, 0x11, 0xc9, 0x83, 0x23, 0xa8, 0x9f, 0xc0, 0x5a, 0x4c, 0xd2, 0x82, 0x60, 0xfd,
+ 0x73, 0x11, 0x1e, 0xa7, 0x05, 0xd0, 0x7b, 0x50, 0x83, 0x95, 0x92, 0x23, 0x4a, 0xa7, 0xba, 0x3c,
+ 0xe8, 0x2a, 0xac, 0xfd, 0x8d, 0x6b, 0xb3, 0x83, 0x80, 0xb3, 0x8c, 0x19, 0x1d, 0xf9, 0xe5, 0x15,
+ 0xef, 0xbb, 0x3f, 0xa3, 0x23, 0xf5, 0x23, 0x78, 0xb2, 0x58, 0x25, 0x3f, 0xaa, 0xff, 0x54, 0x84,
+ 0xf5, 0x23, 0x4c, 0x35, 0xe3, 0xa6, 0x33, 0x32, 0x9c, 0xeb, 0x7c, 0xb8, 0xc0, 0x63, 0xb8, 0x33,
+ 0x74, 0xc9, 0x44, 0x8f, 0x81, 0x03, 0x35, 0xad, 0xc1, 0x88, 0xe1, 0x9d, 0x76, 0x0b, 0xea, 0x94,
+ 0xe8, 0xb1, 0x5b, 0x71, 0x4d, 0x03, 0x4a, 0x82, 0x0e, 0xea, 0x3f, 0x4b, 0x70, 0x77, 0x4e, 0x25,
+ 0xdf, 0xf8, 0xc7, 0x50, 0x77, 0x8d, 0x1b, 0xdd, 0x14, 0xe4, 0x56, 0x91, 0x9f, 0x35, 0x1f, 0x47,
+ 0x4a, 0xc7, 0xe4, 0x98, 0x9d, 0x90, 0xa4, 0x81, 0x1b, 0x72, 0x95, 0x1f, 0x4b, 0x50, 0x0b, 0x39,
+ 0xac, 0xd2, 0xbf, 0xb2, 0xc9, 0x15, 0xbb, 0xf8, 0x88, 0x80, 0x5a, 0x61, 0xcd, 0xfe, 0x20, 0x44,
+ 0x53, 0x96, 0x24, 0x9a, 0xc2, 0x8b, 0x7b, 0x7c, 0x23, 0x8e, 0x5f, 0xa1, 0x7c, 0xc5, 0xc1, 0x37,
+ 0xec, 0xf4, 0x65, 0x2c, 0x76, 0xa3, 0xe7, 0xac, 0x65, 0xc1, 0x22, 0xf6, 0x80, 0xb3, 0xce, 0xa0,
+ 0x46, 0xa6, 0xd8, 0x35, 0x28, 0x5b, 0x73, 0x99, 0xd7, 0xbc, 0x5f, 0xbe, 0xa3, 0xe2, 0x3b, 0x67,
+ 0xc1, 0x40, 0x4d, 0xca, 0x60, 0xb6, 0x66, 0xb6, 0x90, 0x42, 0x05, 0x46, 0xd1, 0x70, 0x8d, 0x9b,
+ 0xb0, 0x7f, 0xa0, 0xd0, 0x84, 0x0c, 0x30, 0x87, 0x29, 0xca, 0x5c, 0xa1, 0x13, 0x32, 0x08, 0x97,
+ 0xc1, 0x59, 0x55, 0xc1, 0x72, 0xf0, 0x0d, 0x63, 0xa9, 0x16, 0xd4, 0xa4, 0x88, 0x3a, 0x54, 0xbe,
+ 0x39, 0x7d, 0x7e, 0x7a, 0xf6, 0xea, 0xb4, 0x59, 0x40, 0x35, 0x28, 0xef, 0x77, 0xbb, 0xbd, 0xae,
+ 0xa8, 0xb5, 0x3b, 0x67, 0xe7, 0xfd, 0x5e, 0x57, 0xd4, 0xda, 0xdd, 0xde, 0x8b, 0xde, 0xcb, 0x5e,
+ 0xb7, 0x59, 0x42, 0x0d, 0xa8, 0x9e, 0x9c, 0x75, 0xfb, 0x87, 0x8c, 0xb5, 0xcc, 0x58, 0x5a, 0xef,
+ 0x74, 0xff, 0xa4, 0xd7, 0x6d, 0x96, 0x51, 0x13, 0x1a, 0x2f, 0x7f, 0x7f, 0xde, 0xd3, 0x3b, 0xc7,
+ 0xfb, 0xa7, 0x47, 0xbd, 0x6e, 0x73, 0x45, 0x7d, 0x0b, 0xad, 0x0b, 0x6c, 0xb8, 0xe6, 0xe8, 0xd0,
+ 0xb2, 0xb1, 0x77, 0x70, 0xcb, 0x52, 0x5b, 0x9e, 0x08, 0x5c, 0x87, 0xf2, 0x9b, 0x19, 0xf6, 0xab,
+ 0x81, 0x9a, 0x26, 0x1a, 0x41, 0x5d, 0x56, 0x0a, 0xeb, 0x32, 0xf5, 0x4b, 0x68, 0xa7, 0xcc, 0x2b,
+ 0x6f, 0x4b, 0x43, 0x46, 0xe6, 0x01, 0xd6, 0xd0, 0x44, 0x43, 0xfd, 0x4b, 0x11, 0xee, 0xc7, 0xc6,
+ 0x74, 0x88, 0x43, 0xb1, 0x43, 0xff, 0x07, 0xea, 0xa2, 0x4f, 0xa0, 0x69, 0x8e, 0x66, 0xce, 0x18,
+ 0xb3, 0x72, 0x51, 0x68, 0xe9, 0xc3, 0x58, 0x1f, 0xfa, 0xf4, 0x70, 0x43, 0xdf, 0xc2, 0x66, 0xba,
+ 0x96, 0xfe, 0xe2, 0x5a, 0x50, 0x99, 0x18, 0xd4, 0x1c, 0x85, 0xcb, 0x0b, 0x9a, 0xac, 0x84, 0xe7,
+ 0x9f, 0x7a, 0xe4, 0x80, 0xac, 0x71, 0x4a, 0xd7, 0xa0, 0x06, 0xda, 0x86, 0x06, 0x76, 0x06, 0x3a,
+ 0x19, 0xea, 0x9c, 0xe6, 0xc3, 0x6b, 0x80, 0x9d, 0xc1, 0xd9, 0xf0, 0x84, 0x51, 0xd4, 0xbf, 0x2f,
+ 0xc1, 0xc6, 0x11, 0x26, 0xbc, 0xd0, 0x7f, 0x65, 0xd1, 0xd1, 0x39, 0x21, 0x21, 0xa4, 0x9c, 0x5a,
+ 0xb2, 0x15, 0xff, 0x03, 0x14, 0xe2, 0x6b, 0x58, 0x0d, 0x01, 0x86, 0x77, 0xa9, 0xf9, 0x02, 0xec,
+ 0x21, 0x14, 0xb0, 0x07, 0x75, 0x72, 0xf5, 0x1a, 0x9b, 0x54, 0x9f, 0xb2, 0xdb, 0x60, 0x29, 0x3e,
+ 0xf4, 0x8c, 0xb3, 0xb8, 0xc6, 0x40, 0xc2, 0x6f, 0x66, 0x13, 0x01, 0x2b, 0xf2, 0x04, 0x2c, 0xf6,
+ 0x74, 0x4d, 0x50, 0x58, 0x0a, 0xbe, 0x84, 0xf6, 0xeb, 0x1b, 0xca, 0x33, 0x30, 0x76, 0xa8, 0x65,
+ 0xf2, 0x2d, 0xa3, 0x8f, 0xb0, 0x31, 0xc0, 0x2e, 0xdf, 0xe5, 0x3f, 0x7f, 0x15, 0xde, 0x78, 0x7d,
+ 0x43, 0xf7, 0x63, 0xe3, 0x8f, 0xf9, 0x70, 0x55, 0x61, 0x07, 0xfc, 0xbc, 0x31, 0x85, 0x13, 0x77,
+ 0xff, 0xb6, 0xc1, 0x61, 0xfb, 0x00, 0x00, 0x16, 0xef, 0x1a, 0xe8, 0x15, 0x34, 0xe7, 0x1f, 0x1b,
+ 0xd0, 0x56, 0xd2, 0x36, 0xb1, 0x57, 0x0d, 0x65, 0x3b, 0xbb, 0x83, 0x1f, 0x51, 0x05, 0x74, 0x19,
+ 0x3c, 0x12, 0x44, 0x5e, 0x10, 0x50, 0x74, 0x60, 0xea, 0x63, 0x85, 0xf2, 0x68, 0x41, 0x8f, 0x50,
+ 0x76, 0x0f, 0x40, 0x3e, 0x09, 0xa0, 0x76, 0x7c, 0x48, 0xe4, 0x51, 0x42, 0x51, 0xd2, 0x58, 0xa1,
+ 0x98, 0xdf, 0xc1, 0x07, 0x71, 0x44, 0x1f, 0x3d, 0x08, 0xd3, 0x6b, 0xda, 0xdb, 0x82, 0xf2, 0x30,
+ 0x8b, 0x1d, 0x15, 0x19, 0x07, 0xd9, 0xa5, 0xc8, 0x54, 0x24, 0x5f, 0x8a, 0x4c, 0xc7, 0xe6, 0xd5,
+ 0x02, 0xfa, 0x0e, 0x50, 0x12, 0x1c, 0x47, 0xa1, 0x9d, 0x32, 0x51, 0x7a, 0x45, 0x5d, 0xd4, 0x25,
+ 0x14, 0x7f, 0x0c, 0xf5, 0x08, 0xac, 0x8c, 0x42, 0x8b, 0x25, 0x11, 0x77, 0xe5, 0x7e, 0x2a, 0x2f,
+ 0x94, 0xf4, 0x0a, 0x9a, 0xf3, 0xd7, 0x07, 0x19, 0x4a, 0x19, 0x18, 0xb5, 0x0c, 0xa5, 0x4c, 0xd4,
+ 0xb9, 0x80, 0x8e, 0x00, 0x24, 0x12, 0x2b, 0xdd, 0x9d, 0x80, 0x7d, 0xa5, 0xbb, 0x93, 0xc0, 0xad,
+ 0x5a, 0xf8, 0xa2, 0xc8, 0x34, 0x9c, 0x47, 0x56, 0xa5, 0x86, 0x19, 0x10, 0xae, 0xd4, 0x30, 0x0b,
+ 0x94, 0x15, 0xc1, 0x9e, 0x80, 0x2a, 0x65, 0xb0, 0x67, 0x41, 0xb3, 0x32, 0xd8, 0x33, 0x71, 0x4e,
+ 0xb5, 0x80, 0xf6, 0x60, 0xf9, 0xd0, 0x33, 0xc7, 0x68, 0x2d, 0xec, 0x2c, 0xf1, 0x4d, 0x65, 0x3d,
+ 0x4e, 0x0c, 0x07, 0x7d, 0x0d, 0xd5, 0x00, 0xe8, 0x43, 0x1b, 0x41, 0x9f, 0x39, 0xb8, 0x52, 0x69,
+ 0x25, 0x19, 0xa1, 0x80, 0x53, 0xb8, 0x13, 0x43, 0xe9, 0xd0, 0x66, 0x38, 0x53, 0x0a, 0x4c, 0xa8,
+ 0x3c, 0xc8, 0xe0, 0x46, 0xb7, 0xac, 0x44, 0xcf, 0xa4, 0x0f, 0x13, 0xd8, 0x9e, 0xf4, 0x61, 0x0a,
+ 0xd8, 0xc6, 0x37, 0x43, 0x12, 0x00, 0x93, 0x9b, 0x21, 0x13, 0x8a, 0x93, 0x9b, 0x21, 0x1b, 0x3f,
+ 0x0b, 0xc4, 0xcf, 0x43, 0x56, 0x51, 0xf1, 0x19, 0xe0, 0x59, 0x54, 0x7c, 0x16, 0xe2, 0xa5, 0x16,
+ 0x90, 0x9d, 0x7c, 0xab, 0xf1, 0xa1, 0x26, 0xf4, 0x51, 0xd6, 0x3e, 0x88, 0x63, 0x5e, 0xca, 0xc7,
+ 0x3f, 0xdb, 0x2f, 0x9c, 0xed, 0x04, 0x1a, 0x51, 0xa8, 0x09, 0xdd, 0x8f, 0x0f, 0x8d, 0xd5, 0xc5,
+ 0xca, 0x66, 0x3a, 0x33, 0xb2, 0x79, 0x6e, 0x40, 0xc9, 0xae, 0x78, 0xd1, 0x27, 0x8b, 0xf4, 0x8a,
+ 0x4f, 0xf5, 0xe9, 0xbb, 0x74, 0x0d, 0x26, 0x7e, 0x5a, 0x64, 0x19, 0x2a, 0x82, 0x4f, 0xc9, 0x0c,
+ 0x95, 0xc4, 0xc6, 0x64, 0x86, 0x4a, 0x01, 0xb4, 0xd4, 0x02, 0x3a, 0x80, 0x5a, 0x78, 0xa2, 0xa2,
+ 0x56, 0xd6, 0x21, 0xab, 0xb4, 0x53, 0x38, 0xa1, 0x8c, 0xe7, 0xd0, 0x88, 0x22, 0x30, 0xd2, 0xaa,
+ 0x29, 0xb0, 0x8f, 0xb4, 0x6a, 0x2a, 0x68, 0x23, 0x92, 0xaf, 0xac, 0xea, 0x23, 0xc9, 0x37, 0x01,
+ 0x1a, 0x44, 0x92, 0x6f, 0x12, 0x06, 0x50, 0x0b, 0xe8, 0x5b, 0xfe, 0x34, 0x17, 0x2f, 0xc5, 0x51,
+ 0xf4, 0x85, 0x2c, 0xb5, 0xea, 0x97, 0x19, 0x28, 0xb3, 0x8e, 0xe7, 0xbe, 0xbf, 0x84, 0xd5, 0x44,
+ 0x6d, 0x2d, 0xa5, 0x67, 0x95, 0xf1, 0x52, 0x7a, 0x66, 0x61, 0xae, 0x16, 0xd0, 0x6f, 0xa0, 0xe2,
+ 0xbf, 0x7b, 0xa3, 0x7b, 0x61, 0xff, 0xd8, 0x73, 0xba, 0xb2, 0x91, 0xa0, 0x87, 0xa3, 0x9f, 0x41,
+ 0x3d, 0x52, 0x72, 0xa3, 0xe8, 0x09, 0x30, 0x57, 0x4a, 0x4b, 0x0b, 0xa6, 0xd4, 0xe8, 0x7c, 0x95,
+ 0x7f, 0x80, 0xcd, 0x45, 0xf5, 0x2f, 0xfa, 0x6c, 0x51, 0xe0, 0xce, 0xcf, 0xf6, 0xf9, 0xbb, 0x75,
+ 0x0e, 0x17, 0x72, 0x0e, 0x77, 0x62, 0x35, 0x9d, 0x4c, 0xb8, 0x69, 0xa5, 0xb6, 0x4c, 0xb8, 0xa9,
+ 0x85, 0x20, 0x5f, 0x0e, 0x86, 0xf5, 0xb4, 0x5b, 0x3d, 0x7a, 0x2c, 0xc3, 0x3b, 0xb3, 0x32, 0x51,
+ 0x9e, 0x2c, 0xee, 0x14, 0x99, 0xe6, 0x5b, 0x58, 0x4d, 0x94, 0x45, 0x32, 0x36, 0xb2, 0x2a, 0x35,
+ 0x19, 0x1b, 0x99, 0x35, 0x15, 0x97, 0xfe, 0x1d, 0xa0, 0x24, 0xe6, 0x88, 0x22, 0xb7, 0xc4, 0x0c,
+ 0xd0, 0x53, 0x66, 0xe4, 0x6c, 0xc8, 0xf2, 0x29, 0x57, 0x3e, 0x01, 0x32, 0x4a, 0xe5, 0xb3, 0xf0,
+ 0x4c, 0xa9, 0x7c, 0x26, 0x42, 0x19, 0xdc, 0x37, 0xe6, 0xaf, 0xe3, 0xf2, 0xbe, 0x91, 0x51, 0xf5,
+ 0x28, 0xdb, 0xd9, 0x1d, 0x02, 0xd1, 0x57, 0x2b, 0xfc, 0xc7, 0xa3, 0xbd, 0x7f, 0x07, 0x00, 0x00,
+ 0xff, 0xff, 0x21, 0xf0, 0xf5, 0xcb, 0xaa, 0x24, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 64ca3b25b..1d945b79b 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -485,12 +485,12 @@
"revisionTime": "2018-11-02T16:30:54Z"
},
{
- "checksumSHA1": "1jQpFgPUfpQIXB+xAFkG93CibrE=",
+ "checksumSHA1": "wTP694SDqgtedj/UT1SwId8RuVA=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb",
- "revision": "3af1b8b22e630206bb1451307a92696b45a864ff",
- "revisionTime": "2019-03-01T18:34:55Z",
- "version": "v1.14.0",
- "versionExact": "v1.14.0"
+ "revision": "7d1db29e07187c3c9b63c8cfa131a17dc29b89ec",
+ "revisionTime": "2019-03-08T18:50:22Z",
+ "version": "jc-change-pre-fetch",
+ "versionExact": "jc-change-pre-fetch"
},
{
"checksumSHA1": "WMOuBgCyclqy+Mqunb0NbykaC4Y=",