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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2019-10-17 17:50:29 +0300
committerPaul Okstad <pokstad@gitlab.com>2019-10-17 17:50:29 +0300
commitda0739ce764a3e8ba07d01982fa5f88ccf8d4c8b (patch)
tree250df638688aa1fde32732e2c405f9ce67037cf7
parent78de944558414c1ae8f97ed900ce303725fdea90 (diff)
Remove RepositoryService WriteConfig
WriteConfig has gone unused, and deprecated for a long time. Originally introduced in https://gitlab.com/gitlab-org/gitaly/merge_requests/554, but got removed from the client in: https://gitlab.com/gitlab-org/gitlab-foss/commit/ff112ce641a93f38647e67e4ed92b685ccc2430a Given it's effectivally dead code, we should remove it.
-rw-r--r--changelogs/unreleased/zj-remove-write-config.yml5
-rw-r--r--internal/praefect/protoregistry/protoregistry_test.go1
-rw-r--r--internal/service/repository/write_config.go22
-rw-r--r--internal/service/repository/write_config_test.go88
-rw-r--r--proto/go/gitalypb/repository-service.pb.go587
-rw-r--r--proto/repository-service.proto15
-rw-r--r--ruby/lib/gitaly_server/repository_service.rb10
-rw-r--r--ruby/lib/gitlab/git/repository.rb8
-rw-r--r--ruby/proto/gitaly/repository-service_pb.rb9
-rw-r--r--ruby/proto/gitaly/repository-service_services_pb.rb1
-rw-r--r--ruby/spec/lib/gitlab/git/repository_spec.rb28
11 files changed, 235 insertions, 539 deletions
diff --git a/changelogs/unreleased/zj-remove-write-config.yml b/changelogs/unreleased/zj-remove-write-config.yml
new file mode 100644
index 000000000..371d2bd70
--- /dev/null
+++ b/changelogs/unreleased/zj-remove-write-config.yml
@@ -0,0 +1,5 @@
+---
+title: Remove RepositoryService WriteConfig
+merge_request: 1558
+author:
+type: other
diff --git a/internal/praefect/protoregistry/protoregistry_test.go b/internal/praefect/protoregistry/protoregistry_test.go
index 569c304e1..f68804d67 100644
--- a/internal/praefect/protoregistry/protoregistry_test.go
+++ b/internal/praefect/protoregistry/protoregistry_test.go
@@ -139,7 +139,6 @@ func TestPopulatesProtoRegistry(t *testing.T) {
"CreateRepositoryFromURL": protoregistry.OpMutator,
"CreateBundle": protoregistry.OpMutator,
"CreateRepositoryFromBundle": protoregistry.OpMutator,
- "WriteConfig": protoregistry.OpMutator,
"SetConfig": protoregistry.OpMutator,
"DeleteConfig": protoregistry.OpMutator,
"FindLicense": protoregistry.OpAccessor,
diff --git a/internal/service/repository/write_config.go b/internal/service/repository/write_config.go
deleted file mode 100644
index fe7d33c73..000000000
--- a/internal/service/repository/write_config.go
+++ /dev/null
@@ -1,22 +0,0 @@
-package repository
-
-import (
- "context"
-
- "gitlab.com/gitlab-org/gitaly/internal/rubyserver"
- "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
-)
-
-func (s *server) WriteConfig(ctx context.Context, req *gitalypb.WriteConfigRequest) (*gitalypb.WriteConfigResponse, error) {
- client, err := s.ruby.RepositoryServiceClient(ctx)
- if err != nil {
- return nil, err
- }
-
- clientCtx, err := rubyserver.SetHeaders(ctx, req.GetRepository())
- if err != nil {
- return nil, err
- }
-
- return client.WriteConfig(clientCtx, req)
-}
diff --git a/internal/service/repository/write_config_test.go b/internal/service/repository/write_config_test.go
deleted file mode 100644
index 32be7808d..000000000
--- a/internal/service/repository/write_config_test.go
+++ /dev/null
@@ -1,88 +0,0 @@
-package repository
-
-import (
- "testing"
-
- "github.com/stretchr/testify/require"
- "gitlab.com/gitlab-org/gitaly/internal/helper/text"
- "gitlab.com/gitlab-org/gitaly/internal/testhelper"
- "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
- "google.golang.org/grpc/codes"
-)
-
-func TestWriteConfigSuccessful(t *testing.T) {
- server, serverSocketPath := runRepoServer(t)
- defer server.Stop()
-
- client, conn := newRepositoryClient(t, serverSocketPath)
- defer conn.Close()
-
- testRepo, testRepoPath, cleanupFn := testhelper.NewTestRepo(t)
- defer cleanupFn()
-
- testcases := []struct {
- desc string
- repo *gitalypb.Repository
- path string
- setPath string
- }{
- {
- desc: "valid repo and full_path",
- repo: testRepo,
- path: "fullpath.git",
- setPath: "fullpath.git",
- },
- {
- desc: "empty full_path",
- repo: testRepo,
- setPath: "fullpath.git", // No change since `nil` is silently ignored
- },
- }
-
- for _, tc := range testcases {
- t.Run(tc.desc, func(t *testing.T) {
- ctx, cancel := testhelper.Context()
- defer cancel()
-
- c, err := client.WriteConfig(ctx, &gitalypb.WriteConfigRequest{Repository: tc.repo, FullPath: tc.path})
- require.NoError(t, err)
- require.NotNil(t, c)
- require.Empty(t, string(c.GetError()))
-
- actualConfig := testhelper.MustRunCommand(t, nil, "git", "-C", testRepoPath, "config", "gitlab.fullpath")
- require.Equal(t, tc.setPath, text.ChompBytes(actualConfig))
- })
- }
-}
-
-func TestWriteConfigFailure(t *testing.T) {
- server, serverSocketPath := runRepoServer(t)
- defer server.Stop()
-
- client, conn := newRepositoryClient(t, serverSocketPath)
- defer conn.Close()
-
- testcases := []struct {
- desc string
- repo *gitalypb.Repository
- path string
- }{
- {
- desc: "invalid repo",
- repo: &gitalypb.Repository{StorageName: testhelper.DefaultStorageName, RelativePath: "non-existing.git"},
- path: "non-existing.git",
- },
- }
-
- for _, tc := range testcases {
- t.Run(tc.desc, func(t *testing.T) {
- ctx, cancel := testhelper.Context()
- defer cancel()
-
- c, err := client.WriteConfig(ctx, &gitalypb.WriteConfigRequest{Repository: tc.repo, FullPath: tc.path})
- testhelper.RequireGrpcError(t, err, codes.NotFound)
- require.Nil(t, c)
- require.Empty(t, c.GetError())
- })
- }
-}
diff --git a/proto/go/gitalypb/repository-service.pb.go b/proto/go/gitalypb/repository-service.pb.go
index dc65a20a9..18e8fc8d5 100644
--- a/proto/go/gitalypb/repository-service.pb.go
+++ b/proto/go/gitalypb/repository-service.pb.go
@@ -92,7 +92,7 @@ func (x GetRawChangesResponse_RawChange_Operation) String() string {
}
func (GetRawChangesResponse_RawChange_Operation) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{63, 0, 0}
+ return fileDescriptor_e9b1768cf174c79b, []int{61, 0, 0}
}
type RepositoryExistsRequest struct {
@@ -1795,92 +1795,6 @@ func (m *CreateBundleResponse) GetData() []byte {
return nil
}
-type WriteConfigRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
- FullPath string `protobuf:"bytes,2,opt,name=full_path,json=fullPath,proto3" json:"full_path,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
-}
-
-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_e9b1768cf174c79b, []int{40}
-}
-
-func (m *WriteConfigRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_WriteConfigRequest.Unmarshal(m, b)
-}
-func (m *WriteConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_WriteConfigRequest.Marshal(b, m, deterministic)
-}
-func (m *WriteConfigRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_WriteConfigRequest.Merge(m, src)
-}
-func (m *WriteConfigRequest) XXX_Size() int {
- return xxx_messageInfo_WriteConfigRequest.Size(m)
-}
-func (m *WriteConfigRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_WriteConfigRequest.DiscardUnknown(m)
-}
-
-var xxx_messageInfo_WriteConfigRequest proto.InternalMessageInfo
-
-func (m *WriteConfigRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *WriteConfigRequest) GetFullPath() string {
- if m != nil {
- return m.FullPath
- }
- return ""
-}
-
-type WriteConfigResponse struct {
- Error []byte `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
-}
-
-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_e9b1768cf174c79b, []int{41}
-}
-
-func (m *WriteConfigResponse) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_WriteConfigResponse.Unmarshal(m, b)
-}
-func (m *WriteConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_WriteConfigResponse.Marshal(b, m, deterministic)
-}
-func (m *WriteConfigResponse) XXX_Merge(src proto.Message) {
- xxx_messageInfo_WriteConfigResponse.Merge(m, src)
-}
-func (m *WriteConfigResponse) XXX_Size() int {
- return xxx_messageInfo_WriteConfigResponse.Size(m)
-}
-func (m *WriteConfigResponse) XXX_DiscardUnknown() {
- xxx_messageInfo_WriteConfigResponse.DiscardUnknown(m)
-}
-
-var xxx_messageInfo_WriteConfigResponse proto.InternalMessageInfo
-
-func (m *WriteConfigResponse) GetError() []byte {
- if m != nil {
- return m.Error
- }
- return nil
-}
-
type SetConfigRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
Entries []*SetConfigRequest_Entry `protobuf:"bytes,2,rep,name=entries,proto3" json:"entries,omitempty"`
@@ -1893,7 +1807,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_e9b1768cf174c79b, []int{42}
+ return fileDescriptor_e9b1768cf174c79b, []int{40}
}
func (m *SetConfigRequest) XXX_Unmarshal(b []byte) error {
@@ -1944,7 +1858,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_e9b1768cf174c79b, []int{42, 0}
+ return fileDescriptor_e9b1768cf174c79b, []int{40, 0}
}
func (m *SetConfigRequest_Entry) XXX_Unmarshal(b []byte) error {
@@ -2041,7 +1955,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_e9b1768cf174c79b, []int{43}
+ return fileDescriptor_e9b1768cf174c79b, []int{41}
}
func (m *SetConfigResponse) XXX_Unmarshal(b []byte) error {
@@ -2074,7 +1988,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_e9b1768cf174c79b, []int{44}
+ return fileDescriptor_e9b1768cf174c79b, []int{42}
}
func (m *DeleteConfigRequest) XXX_Unmarshal(b []byte) error {
@@ -2119,7 +2033,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_e9b1768cf174c79b, []int{45}
+ return fileDescriptor_e9b1768cf174c79b, []int{43}
}
func (m *DeleteConfigResponse) XXX_Unmarshal(b []byte) error {
@@ -2152,7 +2066,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_e9b1768cf174c79b, []int{46}
+ return fileDescriptor_e9b1768cf174c79b, []int{44}
}
func (m *RestoreCustomHooksRequest) XXX_Unmarshal(b []byte) error {
@@ -2197,7 +2111,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_e9b1768cf174c79b, []int{47}
+ return fileDescriptor_e9b1768cf174c79b, []int{45}
}
func (m *RestoreCustomHooksResponse) XXX_Unmarshal(b []byte) error {
@@ -2229,7 +2143,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_e9b1768cf174c79b, []int{48}
+ return fileDescriptor_e9b1768cf174c79b, []int{46}
}
func (m *BackupCustomHooksRequest) XXX_Unmarshal(b []byte) error {
@@ -2268,7 +2182,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_e9b1768cf174c79b, []int{49}
+ return fileDescriptor_e9b1768cf174c79b, []int{47}
}
func (m *BackupCustomHooksResponse) XXX_Unmarshal(b []byte) error {
@@ -2309,7 +2223,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_e9b1768cf174c79b, []int{50}
+ return fileDescriptor_e9b1768cf174c79b, []int{48}
}
func (m *CreateRepositoryFromBundleRequest) XXX_Unmarshal(b []byte) error {
@@ -2354,7 +2268,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_e9b1768cf174c79b, []int{51}
+ return fileDescriptor_e9b1768cf174c79b, []int{49}
}
func (m *CreateRepositoryFromBundleResponse) XXX_Unmarshal(b []byte) error {
@@ -2386,7 +2300,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_e9b1768cf174c79b, []int{52}
+ return fileDescriptor_e9b1768cf174c79b, []int{50}
}
func (m *FindLicenseRequest) XXX_Unmarshal(b []byte) error {
@@ -2425,7 +2339,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_e9b1768cf174c79b, []int{53}
+ return fileDescriptor_e9b1768cf174c79b, []int{51}
}
func (m *FindLicenseResponse) XXX_Unmarshal(b []byte) error {
@@ -2464,7 +2378,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_e9b1768cf174c79b, []int{54}
+ return fileDescriptor_e9b1768cf174c79b, []int{52}
}
func (m *GetInfoAttributesRequest) XXX_Unmarshal(b []byte) error {
@@ -2503,7 +2417,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_e9b1768cf174c79b, []int{55}
+ return fileDescriptor_e9b1768cf174c79b, []int{53}
}
func (m *GetInfoAttributesResponse) XXX_Unmarshal(b []byte) error {
@@ -2542,7 +2456,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_e9b1768cf174c79b, []int{56}
+ return fileDescriptor_e9b1768cf174c79b, []int{54}
}
func (m *CalculateChecksumRequest) XXX_Unmarshal(b []byte) error {
@@ -2581,7 +2495,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_e9b1768cf174c79b, []int{57}
+ return fileDescriptor_e9b1768cf174c79b, []int{55}
}
func (m *CalculateChecksumResponse) XXX_Unmarshal(b []byte) error {
@@ -2620,7 +2534,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_e9b1768cf174c79b, []int{58}
+ return fileDescriptor_e9b1768cf174c79b, []int{56}
}
func (m *GetSnapshotRequest) XXX_Unmarshal(b []byte) error {
@@ -2659,7 +2573,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_e9b1768cf174c79b, []int{59}
+ return fileDescriptor_e9b1768cf174c79b, []int{57}
}
func (m *GetSnapshotResponse) XXX_Unmarshal(b []byte) error {
@@ -2700,7 +2614,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_e9b1768cf174c79b, []int{60}
+ return fileDescriptor_e9b1768cf174c79b, []int{58}
}
func (m *CreateRepositoryFromSnapshotRequest) XXX_Unmarshal(b []byte) error {
@@ -2752,7 +2666,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_e9b1768cf174c79b, []int{61}
+ return fileDescriptor_e9b1768cf174c79b, []int{59}
}
func (m *CreateRepositoryFromSnapshotResponse) XXX_Unmarshal(b []byte) error {
@@ -2786,7 +2700,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_e9b1768cf174c79b, []int{62}
+ return fileDescriptor_e9b1768cf174c79b, []int{60}
}
func (m *GetRawChangesRequest) XXX_Unmarshal(b []byte) error {
@@ -2839,7 +2753,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_e9b1768cf174c79b, []int{63}
+ return fileDescriptor_e9b1768cf174c79b, []int{61}
}
func (m *GetRawChangesResponse) XXX_Unmarshal(b []byte) error {
@@ -2889,7 +2803,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_e9b1768cf174c79b, []int{63, 0}
+ return fileDescriptor_e9b1768cf174c79b, []int{61, 0}
}
func (m *GetRawChangesResponse_RawChange) XXX_Unmarshal(b []byte) error {
@@ -2995,7 +2909,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_e9b1768cf174c79b, []int{64}
+ return fileDescriptor_e9b1768cf174c79b, []int{62}
}
func (m *SearchFilesByNameRequest) XXX_Unmarshal(b []byte) error {
@@ -3048,7 +2962,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_e9b1768cf174c79b, []int{65}
+ return fileDescriptor_e9b1768cf174c79b, []int{63}
}
func (m *SearchFilesByNameResponse) XXX_Unmarshal(b []byte) error {
@@ -3090,7 +3004,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_e9b1768cf174c79b, []int{66}
+ return fileDescriptor_e9b1768cf174c79b, []int{64}
}
func (m *SearchFilesByContentRequest) XXX_Unmarshal(b []byte) error {
@@ -3152,7 +3066,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_e9b1768cf174c79b, []int{67}
+ return fileDescriptor_e9b1768cf174c79b, []int{65}
}
func (m *SearchFilesByContentResponse) XXX_Unmarshal(b []byte) error {
@@ -3207,7 +3121,7 @@ func (m *PreFetchRequest) Reset() { *m = PreFetchRequest{} }
func (m *PreFetchRequest) String() string { return proto.CompactTextString(m) }
func (*PreFetchRequest) ProtoMessage() {}
func (*PreFetchRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{68}
+ return fileDescriptor_e9b1768cf174c79b, []int{66}
}
func (m *PreFetchRequest) XXX_Unmarshal(b []byte) error {
@@ -3259,7 +3173,7 @@ func (m *PreFetchResponse) Reset() { *m = PreFetchResponse{} }
func (m *PreFetchResponse) String() string { return proto.CompactTextString(m) }
func (*PreFetchResponse) ProtoMessage() {}
func (*PreFetchResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{69}
+ return fileDescriptor_e9b1768cf174c79b, []int{67}
}
func (m *PreFetchResponse) XXX_Unmarshal(b []byte) error {
@@ -3294,7 +3208,7 @@ func (m *Remote) Reset() { *m = Remote{} }
func (m *Remote) String() string { return proto.CompactTextString(m) }
func (*Remote) ProtoMessage() {}
func (*Remote) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{70}
+ return fileDescriptor_e9b1768cf174c79b, []int{68}
}
func (m *Remote) XXX_Unmarshal(b []byte) error {
@@ -3356,7 +3270,7 @@ func (m *FetchHTTPRemoteRequest) Reset() { *m = FetchHTTPRemoteRequest{}
func (m *FetchHTTPRemoteRequest) String() string { return proto.CompactTextString(m) }
func (*FetchHTTPRemoteRequest) ProtoMessage() {}
func (*FetchHTTPRemoteRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{71}
+ return fileDescriptor_e9b1768cf174c79b, []int{69}
}
func (m *FetchHTTPRemoteRequest) XXX_Unmarshal(b []byte) error {
@@ -3408,7 +3322,7 @@ func (m *FetchHTTPRemoteResponse) Reset() { *m = FetchHTTPRemoteResponse
func (m *FetchHTTPRemoteResponse) String() string { return proto.CompactTextString(m) }
func (*FetchHTTPRemoteResponse) ProtoMessage() {}
func (*FetchHTTPRemoteResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{72}
+ return fileDescriptor_e9b1768cf174c79b, []int{70}
}
func (m *FetchHTTPRemoteResponse) XXX_Unmarshal(b []byte) error {
@@ -3440,7 +3354,7 @@ func (m *GetObjectDirectorySizeRequest) Reset() { *m = GetObjectDirector
func (m *GetObjectDirectorySizeRequest) String() string { return proto.CompactTextString(m) }
func (*GetObjectDirectorySizeRequest) ProtoMessage() {}
func (*GetObjectDirectorySizeRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{73}
+ return fileDescriptor_e9b1768cf174c79b, []int{71}
}
func (m *GetObjectDirectorySizeRequest) XXX_Unmarshal(b []byte) error {
@@ -3480,7 +3394,7 @@ func (m *GetObjectDirectorySizeResponse) Reset() { *m = GetObjectDirecto
func (m *GetObjectDirectorySizeResponse) String() string { return proto.CompactTextString(m) }
func (*GetObjectDirectorySizeResponse) ProtoMessage() {}
func (*GetObjectDirectorySizeResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{74}
+ return fileDescriptor_e9b1768cf174c79b, []int{72}
}
func (m *GetObjectDirectorySizeResponse) XXX_Unmarshal(b []byte) error {
@@ -3521,7 +3435,7 @@ func (m *CloneFromPoolRequest) Reset() { *m = CloneFromPoolRequest{} }
func (m *CloneFromPoolRequest) String() string { return proto.CompactTextString(m) }
func (*CloneFromPoolRequest) ProtoMessage() {}
func (*CloneFromPoolRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{75}
+ return fileDescriptor_e9b1768cf174c79b, []int{73}
}
func (m *CloneFromPoolRequest) XXX_Unmarshal(b []byte) error {
@@ -3573,7 +3487,7 @@ func (m *CloneFromPoolResponse) Reset() { *m = CloneFromPoolResponse{} }
func (m *CloneFromPoolResponse) String() string { return proto.CompactTextString(m) }
func (*CloneFromPoolResponse) ProtoMessage() {}
func (*CloneFromPoolResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{76}
+ return fileDescriptor_e9b1768cf174c79b, []int{74}
}
func (m *CloneFromPoolResponse) XXX_Unmarshal(b []byte) error {
@@ -3607,7 +3521,7 @@ func (m *CloneFromPoolInternalRequest) Reset() { *m = CloneFromPoolInter
func (m *CloneFromPoolInternalRequest) String() string { return proto.CompactTextString(m) }
func (*CloneFromPoolInternalRequest) ProtoMessage() {}
func (*CloneFromPoolInternalRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{77}
+ return fileDescriptor_e9b1768cf174c79b, []int{75}
}
func (m *CloneFromPoolInternalRequest) XXX_Unmarshal(b []byte) error {
@@ -3659,7 +3573,7 @@ func (m *CloneFromPoolInternalResponse) Reset() { *m = CloneFromPoolInte
func (m *CloneFromPoolInternalResponse) String() string { return proto.CompactTextString(m) }
func (*CloneFromPoolInternalResponse) ProtoMessage() {}
func (*CloneFromPoolInternalResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{78}
+ return fileDescriptor_e9b1768cf174c79b, []int{76}
}
func (m *CloneFromPoolInternalResponse) XXX_Unmarshal(b []byte) error {
@@ -3691,7 +3605,7 @@ func (m *RemoveRepositoryRequest) Reset() { *m = RemoveRepositoryRequest
func (m *RemoveRepositoryRequest) String() string { return proto.CompactTextString(m) }
func (*RemoveRepositoryRequest) ProtoMessage() {}
func (*RemoveRepositoryRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{79}
+ return fileDescriptor_e9b1768cf174c79b, []int{77}
}
func (m *RemoveRepositoryRequest) XXX_Unmarshal(b []byte) error {
@@ -3729,7 +3643,7 @@ func (m *RemoveRepositoryResponse) Reset() { *m = RemoveRepositoryRespon
func (m *RemoveRepositoryResponse) String() string { return proto.CompactTextString(m) }
func (*RemoveRepositoryResponse) ProtoMessage() {}
func (*RemoveRepositoryResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{80}
+ return fileDescriptor_e9b1768cf174c79b, []int{78}
}
func (m *RemoveRepositoryResponse) XXX_Unmarshal(b []byte) error {
@@ -3762,7 +3676,7 @@ func (m *RenameRepositoryRequest) Reset() { *m = RenameRepositoryRequest
func (m *RenameRepositoryRequest) String() string { return proto.CompactTextString(m) }
func (*RenameRepositoryRequest) ProtoMessage() {}
func (*RenameRepositoryRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{81}
+ return fileDescriptor_e9b1768cf174c79b, []int{79}
}
func (m *RenameRepositoryRequest) XXX_Unmarshal(b []byte) error {
@@ -3807,7 +3721,7 @@ func (m *RenameRepositoryResponse) Reset() { *m = RenameRepositoryRespon
func (m *RenameRepositoryResponse) String() string { return proto.CompactTextString(m) }
func (*RenameRepositoryResponse) ProtoMessage() {}
func (*RenameRepositoryResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{82}
+ return fileDescriptor_e9b1768cf174c79b, []int{80}
}
func (m *RenameRepositoryResponse) XXX_Unmarshal(b []byte) error {
@@ -3871,8 +3785,6 @@ func init() {
proto.RegisterType((*CreateRepositoryFromURLResponse)(nil), "gitaly.CreateRepositoryFromURLResponse")
proto.RegisterType((*CreateBundleRequest)(nil), "gitaly.CreateBundleRequest")
proto.RegisterType((*CreateBundleResponse)(nil), "gitaly.CreateBundleResponse")
- proto.RegisterType((*WriteConfigRequest)(nil), "gitaly.WriteConfigRequest")
- proto.RegisterType((*WriteConfigResponse)(nil), "gitaly.WriteConfigResponse")
proto.RegisterType((*SetConfigRequest)(nil), "gitaly.SetConfigRequest")
proto.RegisterType((*SetConfigRequest_Entry)(nil), "gitaly.SetConfigRequest.Entry")
proto.RegisterType((*SetConfigResponse)(nil), "gitaly.SetConfigResponse")
@@ -3921,195 +3833,192 @@ func init() {
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor_e9b1768cf174c79b) }
var fileDescriptor_e9b1768cf174c79b = []byte{
- // 2994 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xcb, 0x6f, 0xdc, 0xd6,
- 0xd5, 0x37, 0x35, 0x92, 0x66, 0xe6, 0xcc, 0xc8, 0x1e, 0x5d, 0xc9, 0xd2, 0x88, 0xd6, 0xc3, 0xa6,
- 0x1d, 0xc7, 0x79, 0xc9, 0x8e, 0xfc, 0x01, 0x5f, 0xf0, 0x3d, 0x10, 0xe8, 0x2d, 0xc5, 0xd6, 0xa3,
- 0x94, 0x0c, 0x23, 0x06, 0x02, 0x86, 0xe2, 0xdc, 0xd1, 0xb0, 0xe2, 0xf0, 0x4e, 0x2e, 0x39, 0x52,
- 0x94, 0x55, 0x17, 0x2d, 0x90, 0x55, 0xd1, 0xac, 0x02, 0x74, 0xdd, 0xbf, 0xa0, 0xbb, 0xa2, 0xe8,
- 0xbe, 0xcb, 0x02, 0x5d, 0xf5, 0x5f, 0xc9, 0xa6, 0xc5, 0x7d, 0x0c, 0x2f, 0x39, 0x24, 0x27, 0x0e,
- 0xa8, 0xa6, 0x3b, 0xde, 0x73, 0xce, 0x3d, 0xe7, 0xdc, 0x73, 0x9f, 0xe7, 0x77, 0x08, 0x4d, 0x8a,
- 0x7b, 0x24, 0x70, 0x43, 0x42, 0xaf, 0x3f, 0x0a, 0x30, 0xbd, 0x74, 0x1d, 0xbc, 0xda, 0xa3, 0x24,
- 0x24, 0x68, 0xf2, 0xdc, 0x0d, 0x6d, 0xef, 0x5a, 0xaf, 0x07, 0x1d, 0x9b, 0xe2, 0x96, 0xa0, 0x1a,
- 0x07, 0x30, 0x6f, 0x46, 0x3d, 0xb6, 0xbf, 0x76, 0x83, 0x30, 0x30, 0xf1, 0x57, 0x7d, 0x1c, 0x84,
- 0x68, 0x0d, 0x40, 0x29, 0x6b, 0x6a, 0xf7, 0xb5, 0x27, 0xb5, 0x35, 0xb4, 0x2a, 0xb4, 0xac, 0xaa,
- 0x4e, 0x66, 0x4c, 0xca, 0x58, 0x83, 0x66, 0x5a, 0x5d, 0xd0, 0x23, 0x7e, 0x80, 0xd1, 0x1c, 0x4c,
- 0x62, 0x4e, 0xe1, 0xba, 0x2a, 0xa6, 0x6c, 0x19, 0x87, 0xbc, 0x8f, 0xed, 0x5c, 0xec, 0xfb, 0x0e,
- 0xc5, 0x5d, 0xec, 0x87, 0xb6, 0x57, 0xc4, 0x87, 0x7b, 0xb0, 0x90, 0xa1, 0x4f, 0x38, 0x61, 0x78,
- 0x30, 0x2d, 0x98, 0x3b, 0x7d, 0xaf, 0x88, 0x15, 0xf4, 0x10, 0xa6, 0x1c, 0x8a, 0xed, 0x10, 0x5b,
- 0x67, 0x6e, 0xd8, 0xb5, 0x7b, 0xcd, 0x31, 0x3e, 0xa8, 0xba, 0x20, 0x6e, 0x70, 0x9a, 0x31, 0x0b,
- 0x28, 0x6e, 0x4d, 0xfa, 0xd0, 0x83, 0xbb, 0xbb, 0x36, 0x3d, 0xb3, 0xcf, 0xf1, 0x26, 0xf1, 0x3c,
- 0xec, 0x84, 0xff, 0x76, 0x3f, 0x9a, 0x30, 0x37, 0x6c, 0x51, 0xfa, 0xb2, 0x05, 0xb7, 0x37, 0x3d,
- 0x6c, 0xfb, 0xfd, 0x5e, 0x91, 0x90, 0x4f, 0xc3, 0x9d, 0x48, 0x8b, 0x54, 0xfc, 0x02, 0xee, 0x2a,
- 0xe1, 0x13, 0xf7, 0x1b, 0x5c, 0x44, 0xff, 0x87, 0x30, 0x37, 0xac, 0x4c, 0x2e, 0x2a, 0x04, 0xe3,
- 0x81, 0xfb, 0x0d, 0xe6, 0x7a, 0x4a, 0x26, 0xff, 0x36, 0x2e, 0x60, 0x61, 0xbd, 0xd7, 0xf3, 0xae,
- 0x77, 0xdd, 0xd0, 0x0e, 0x43, 0xea, 0x9e, 0xf5, 0x43, 0x5c, 0x64, 0x55, 0x23, 0x1d, 0x2a, 0x14,
- 0x5f, 0xba, 0x81, 0x4b, 0x7c, 0x1e, 0xde, 0xba, 0x19, 0xb5, 0x8d, 0x45, 0xd0, 0xb3, 0x8c, 0xc9,
- 0x28, 0xfc, 0x69, 0x0c, 0xd0, 0x0e, 0x0e, 0x9d, 0x8e, 0x89, 0xbb, 0x24, 0x2c, 0x12, 0x03, 0xb6,
- 0x7d, 0x28, 0x57, 0xc2, 0x5d, 0xa8, 0x9a, 0xb2, 0x85, 0x66, 0x61, 0xa2, 0x4d, 0xa8, 0x83, 0x9b,
- 0x25, 0x3e, 0xf1, 0xa2, 0x81, 0xe6, 0xa1, 0xec, 0x13, 0x2b, 0xb4, 0xcf, 0x83, 0xe6, 0xb8, 0xd8,
- 0x6d, 0x3e, 0x39, 0xb5, 0xcf, 0x03, 0xd4, 0x84, 0x72, 0xe8, 0x76, 0x31, 0xe9, 0x87, 0xcd, 0x89,
- 0xfb, 0xda, 0x93, 0x09, 0x73, 0xd0, 0x64, 0x5d, 0x82, 0xa0, 0x63, 0x5d, 0xe0, 0xeb, 0xe6, 0xa4,
- 0xb0, 0x10, 0x04, 0x9d, 0x17, 0xf8, 0x1a, 0xad, 0x40, 0xed, 0xc2, 0x27, 0x57, 0xbe, 0xd5, 0x21,
- 0x6c, 0xf7, 0x96, 0x39, 0x13, 0x38, 0x69, 0x8f, 0x51, 0xd0, 0x02, 0x54, 0x7c, 0x62, 0xf5, 0x68,
- 0xdf, 0xc7, 0xcd, 0x2a, 0xb7, 0x56, 0xf6, 0xc9, 0x31, 0x6b, 0xa2, 0xe7, 0x30, 0x25, 0xfc, 0xb4,
- 0x7a, 0x36, 0xb5, 0xbb, 0x41, 0x13, 0xf8, 0x60, 0x6f, 0xab, 0xc1, 0xf2, 0xb8, 0xd4, 0x85, 0xd0,
- 0x31, 0x97, 0xf9, 0x6c, 0xbc, 0x52, 0x69, 0x54, 0x8d, 0xbb, 0x30, 0x93, 0x08, 0x9d, 0x0c, 0xe9,
- 0x01, 0xcc, 0x6f, 0xf2, 0xb5, 0x1d, 0x8b, 0x53, 0x81, 0xa5, 0xa5, 0x43, 0x33, 0xad, 0x4e, 0x9a,
- 0xfa, 0xa7, 0x06, 0xd3, 0xbb, 0x38, 0x5c, 0xa7, 0x4e, 0xc7, 0xbd, 0x2c, 0x34, 0x79, 0xf7, 0xa0,
- 0xea, 0x90, 0x6e, 0xd7, 0x0d, 0x2d, 0xb7, 0x25, 0xe7, 0xaf, 0x22, 0x08, 0xfb, 0x2d, 0x36, 0xb3,
- 0x3d, 0x8a, 0xdb, 0xee, 0xd7, 0x7c, 0x0a, 0xab, 0xa6, 0x6c, 0xa1, 0x4f, 0x60, 0xb2, 0x4d, 0x68,
- 0xd7, 0x0e, 0xf9, 0x14, 0xde, 0x5e, 0xbb, 0x3f, 0x30, 0x92, 0xf2, 0x69, 0x75, 0x87, 0xcb, 0x99,
- 0x52, 0x9e, 0xed, 0x8a, 0x9e, 0x1d, 0x76, 0xf8, 0x0c, 0xd7, 0x4d, 0xfe, 0x6d, 0x3c, 0x87, 0x49,
- 0x21, 0x85, 0xca, 0x50, 0x7a, 0xb3, 0x7f, 0xdc, 0xb8, 0xc5, 0x3e, 0x4e, 0xd7, 0xcd, 0x86, 0x86,
- 0x00, 0x26, 0x4f, 0xd7, 0x4d, 0x6b, 0xf7, 0x4d, 0x63, 0x0c, 0xd5, 0xa0, 0xcc, 0xbe, 0x37, 0xde,
- 0xac, 0x35, 0x4a, 0xc6, 0x13, 0x40, 0x71, 0x63, 0x6a, 0xd3, 0xb5, 0xec, 0xd0, 0xe6, 0x63, 0xaf,
- 0x9b, 0xfc, 0x9b, 0x4d, 0xcb, 0x9e, 0x1d, 0xbc, 0x24, 0x8e, 0xed, 0x6d, 0x50, 0xdb, 0x77, 0x3a,
- 0x85, 0xb6, 0x9c, 0xf1, 0x0c, 0x9a, 0x69, 0x75, 0xd2, 0xfc, 0x2c, 0x4c, 0x5c, 0xda, 0x5e, 0x1f,
- 0xcb, 0x7b, 0x44, 0x34, 0x8c, 0xbf, 0x6b, 0xd0, 0xe4, 0xeb, 0xe5, 0x84, 0xf4, 0xa9, 0x83, 0x45,
- 0xaf, 0x22, 0x73, 0xf6, 0x29, 0x4c, 0x07, 0x5c, 0x95, 0x15, 0xeb, 0x3a, 0x96, 0xdb, 0xb5, 0x21,
- 0x84, 0xcd, 0xc4, 0xd1, 0x2c, 0x15, 0x9c, 0x71, 0x67, 0xf8, 0xf4, 0xd6, 0xcd, 0x7a, 0x10, 0x73,
- 0x10, 0x2d, 0x01, 0x84, 0x36, 0x3d, 0xc7, 0xa1, 0x45, 0x71, 0x9b, 0x4f, 0x74, 0xdd, 0xac, 0x0a,
- 0x8a, 0x89, 0xdb, 0xc6, 0x73, 0x58, 0xc8, 0x18, 0x94, 0xba, 0x51, 0x29, 0x0e, 0xfa, 0x5e, 0x38,
- 0xb8, 0x51, 0x45, 0xcb, 0x58, 0x87, 0xda, 0x4e, 0xe0, 0x5c, 0x14, 0x89, 0xff, 0x23, 0xa8, 0x0b,
- 0x15, 0x2a, 0xe6, 0x98, 0x52, 0x42, 0xe5, 0x9c, 0x8b, 0x86, 0xf1, 0x47, 0x0d, 0xee, 0xbc, 0xa6,
- 0x2e, 0xdb, 0x3c, 0xed, 0x22, 0xa1, 0x6e, 0x40, 0x89, 0x8d, 0x5e, 0x9c, 0xad, 0xec, 0x33, 0x71,
- 0xe4, 0x96, 0x92, 0x47, 0x2e, 0x7a, 0x00, 0x75, 0xe2, 0xb5, 0xac, 0x88, 0x2f, 0x82, 0x56, 0x23,
- 0x5e, 0xcb, 0x1c, 0x88, 0x44, 0x87, 0xe2, 0x44, 0xec, 0x50, 0xfc, 0x6c, 0xbc, 0x32, 0xd9, 0x28,
- 0x1b, 0x4d, 0x68, 0x28, 0x9f, 0xc5, 0xf0, 0x3e, 0x1b, 0xaf, 0x68, 0x8d, 0x31, 0xa3, 0x03, 0xb3,
- 0x3b, 0xae, 0xdf, 0x3a, 0xc0, 0xf4, 0x1c, 0x6f, 0xd8, 0x41, 0xa1, 0x1d, 0xbf, 0x08, 0xd5, 0x81,
- 0x83, 0x41, 0x73, 0xec, 0x7e, 0x89, 0x4d, 0x6b, 0x44, 0x30, 0x3e, 0x80, 0xbb, 0x43, 0x96, 0xd4,
- 0xd6, 0x3a, 0xb3, 0x03, 0xb1, 0xb4, 0xab, 0x26, 0xff, 0x36, 0xbe, 0xd5, 0x60, 0x5a, 0x9c, 0x51,
- 0x3b, 0x84, 0x5e, 0xfc, 0x27, 0x97, 0x34, 0x7b, 0xd0, 0xc4, 0x3d, 0x89, 0x1e, 0x55, 0x0b, 0xfb,
- 0x81, 0x89, 0x99, 0xb3, 0xfb, 0xfe, 0x31, 0x25, 0xe7, 0x14, 0x07, 0x41, 0xc1, 0xe3, 0x92, 0x72,
- 0x75, 0xb1, 0xe3, 0x52, 0x10, 0xf6, 0x5b, 0xc6, 0xff, 0x83, 0x9e, 0x65, 0x4d, 0x06, 0x70, 0x05,
- 0x6a, 0xae, 0x6f, 0xf5, 0x24, 0x59, 0x6e, 0x0c, 0x70, 0x23, 0x41, 0xe1, 0xec, 0xc9, 0x57, 0x7d,
- 0x3b, 0xe8, 0xdc, 0x98, 0xb3, 0x01, 0x57, 0x17, 0x73, 0x56, 0x10, 0x06, 0xce, 0xa6, 0xad, 0xbd,
- 0xad, 0xb3, 0x6d, 0x58, 0x1e, 0xbe, 0x9d, 0x76, 0x28, 0xe9, 0xbe, 0x32, 0x5f, 0x16, 0xdc, 0x6e,
- 0x7d, 0xea, 0x49, 0x5f, 0xd9, 0xa7, 0xf1, 0x00, 0x56, 0x72, 0xed, 0xc8, 0x49, 0xde, 0x87, 0x19,
- 0x21, 0xb2, 0xd1, 0xf7, 0x5b, 0x5e, 0xa1, 0xe7, 0xdc, 0xfb, 0x30, 0x9b, 0x54, 0x35, 0xe2, 0x5e,
- 0xc1, 0x80, 0xf8, 0x6e, 0xdd, 0x24, 0x7e, 0xdb, 0x3d, 0x2f, 0x38, 0x4f, 0xed, 0xbe, 0xe7, 0x59,
- 0xfc, 0x66, 0x94, 0xf3, 0xc4, 0x08, 0xc7, 0xec, 0x76, 0xfc, 0x00, 0x66, 0x12, 0x66, 0x46, 0x1e,
- 0x7b, 0xdf, 0x8e, 0x41, 0xe3, 0x04, 0x87, 0xc5, 0x5d, 0xfa, 0x04, 0xca, 0xd8, 0x0f, 0xa9, 0x8b,
- 0xc5, 0x11, 0x51, 0x5b, 0x5b, 0x1e, 0x74, 0x18, 0x56, 0xbf, 0xba, 0xed, 0x87, 0xf4, 0xda, 0x1c,
- 0x88, 0xeb, 0xbf, 0xd1, 0x60, 0x82, 0x93, 0xd8, 0x64, 0xb2, 0x27, 0x9b, 0x38, 0x30, 0xd8, 0x27,
- 0x5a, 0x82, 0x2a, 0xbf, 0x12, 0xad, 0x20, 0xa4, 0x62, 0xa0, 0x7b, 0xb7, 0xcc, 0x0a, 0x27, 0x9d,
- 0x84, 0x14, 0x3d, 0x80, 0x9a, 0x60, 0xbb, 0x7e, 0xf8, 0x7c, 0x8d, 0x9f, 0xae, 0x13, 0x7b, 0xb7,
- 0x4c, 0xe0, 0xc4, 0x7d, 0x46, 0x43, 0x2b, 0x20, 0x5a, 0xd6, 0x19, 0x21, 0x9e, 0x78, 0x40, 0xee,
- 0xdd, 0x32, 0x85, 0xd6, 0x0d, 0x42, 0xbc, 0x8d, 0xb2, 0xbc, 0x82, 0x8d, 0x19, 0x98, 0x8e, 0xb9,
- 0x2a, 0x97, 0xca, 0x17, 0x30, 0xb3, 0x85, 0x3d, 0x7c, 0x13, 0x93, 0x86, 0x60, 0xfc, 0x02, 0x5f,
- 0x8b, 0xf0, 0x54, 0x4d, 0xfe, 0x6d, 0xcc, 0xc1, 0x6c, 0x52, 0xbd, 0x34, 0xeb, 0xb0, 0xc4, 0x2f,
- 0x08, 0x09, 0xc5, 0x9b, 0xfd, 0x20, 0x24, 0xdd, 0x3d, 0x42, 0x2e, 0x82, 0x82, 0xc6, 0xf9, 0x7a,
- 0x1c, 0x8b, 0xad, 0xc7, 0x45, 0xd0, 0xb3, 0x8c, 0x48, 0x17, 0x0e, 0xa1, 0xb9, 0x61, 0x3b, 0x17,
- 0xfd, 0xde, 0xcd, 0x78, 0x60, 0x3c, 0x85, 0x85, 0x0c, 0x7d, 0x23, 0xb6, 0xcb, 0x05, 0x3c, 0xc8,
- 0xda, 0xc8, 0x85, 0xf7, 0x6c, 0x66, 0x2c, 0x1e, 0x81, 0x31, 0xca, 0x98, 0x8c, 0xc9, 0x1e, 0x20,
- 0x76, 0xd7, 0xbd, 0x74, 0x1d, 0xec, 0x17, 0xba, 0x53, 0x8d, 0x4d, 0x98, 0x49, 0x68, 0x92, 0x71,
- 0xf8, 0x10, 0x90, 0x27, 0x48, 0x56, 0xd0, 0x21, 0x34, 0xb4, 0x7c, 0xbb, 0x3b, 0xb8, 0x41, 0x1b,
- 0x92, 0x73, 0xc2, 0x18, 0x87, 0x76, 0x97, 0x4f, 0xd1, 0x2e, 0x0e, 0xf7, 0xfd, 0x36, 0x59, 0xbf,
- 0x89, 0xe4, 0xd0, 0xf8, 0x5f, 0x58, 0xc8, 0xd0, 0x27, 0x5d, 0x5b, 0x06, 0x50, 0x59, 0xa1, 0x9c,
- 0xa8, 0x18, 0x85, 0x39, 0xb3, 0x69, 0x7b, 0x4e, 0xdf, 0xb3, 0x43, 0xbc, 0xd9, 0xc1, 0xce, 0x45,
- 0xd0, 0xef, 0x16, 0x71, 0xe6, 0xbf, 0x61, 0x21, 0x43, 0x9f, 0x74, 0x46, 0x87, 0x8a, 0x23, 0x69,
- 0x32, 0x3a, 0x51, 0x9b, 0x4d, 0xd2, 0x2e, 0x0e, 0x4f, 0x7c, 0xbb, 0x17, 0x74, 0x48, 0x11, 0x40,
- 0xc2, 0x78, 0x0f, 0x66, 0x12, 0x9a, 0x46, 0x2c, 0xd6, 0xef, 0x34, 0x78, 0x98, 0xb5, 0x80, 0x6e,
- 0xc0, 0x0d, 0x96, 0x93, 0x76, 0xc2, 0xb0, 0x67, 0xa9, 0x8b, 0xae, 0xcc, 0xda, 0xaf, 0xa8, 0xc7,
- 0x2e, 0x02, 0xce, 0xb2, 0xfb, 0x61, 0x47, 0xa6, 0x5c, 0x5c, 0x76, 0xbd, 0x1f, 0x76, 0x8c, 0xc7,
- 0xf0, 0x68, 0xb4, 0x4b, 0x72, 0x55, 0xff, 0x4e, 0x83, 0xd9, 0x5d, 0x1c, 0x9a, 0xf6, 0xd5, 0x66,
- 0xc7, 0xf6, 0xcf, 0x8b, 0x01, 0x0c, 0x0f, 0x61, 0xaa, 0x4d, 0x49, 0xd7, 0x4a, 0xa0, 0x0c, 0x55,
- 0xb3, 0xce, 0x88, 0xd1, 0x9b, 0x76, 0x05, 0x6a, 0x21, 0xb1, 0x12, 0xaf, 0xe2, 0xaa, 0x09, 0x21,
- 0x19, 0x08, 0x18, 0x7f, 0x19, 0x87, 0xbb, 0x43, 0x2e, 0xc9, 0xe0, 0xef, 0x41, 0x8d, 0xda, 0x57,
- 0x96, 0x23, 0xc8, 0x4d, 0x8d, 0xdf, 0x35, 0xef, 0xc6, 0xd2, 0xc9, 0x74, 0x9f, 0xd5, 0x88, 0x64,
- 0x02, 0x8d, 0xb8, 0xfa, 0x3f, 0x4a, 0x50, 0x8d, 0x38, 0x68, 0x1e, 0xca, 0x67, 0x1e, 0x39, 0x63,
- 0x0f, 0x1f, 0xb1, 0xa0, 0x26, 0x59, 0x73, 0xbf, 0x15, 0xc1, 0x32, 0x63, 0x0a, 0x96, 0x41, 0x4b,
- 0x50, 0xf1, 0xf1, 0x95, 0xb8, 0x7e, 0xb9, 0xf3, 0x1b, 0x63, 0x4d, 0xcd, 0x2c, 0xfb, 0xf8, 0x8a,
- 0xdd, 0xc0, 0x8c, 0xcd, 0x5e, 0xf5, 0x9c, 0x3d, 0xae, 0xd8, 0xc4, 0x6b, 0x71, 0xf6, 0x11, 0x54,
- 0x49, 0x0f, 0x53, 0x3b, 0x64, 0x63, 0x9f, 0xe0, 0xf9, 0xf0, 0xc7, 0x6f, 0x39, 0x80, 0xd5, 0xa3,
- 0x41, 0x47, 0x53, 0xe9, 0x60, 0x31, 0x67, 0x31, 0x51, 0x4a, 0x05, 0xe8, 0x51, 0xa7, 0xf6, 0x55,
- 0x24, 0xcf, 0x56, 0x11, 0x73, 0xaa, 0x4b, 0x5a, 0x98, 0xe3, 0x1e, 0x13, 0xdc, 0xa1, 0x03, 0xd2,
- 0xc2, 0x1c, 0xf4, 0xc0, 0x57, 0x82, 0x55, 0x11, 0x2c, 0x1f, 0x5f, 0x71, 0xd6, 0x23, 0xb8, 0x3d,
- 0x18, 0xa9, 0x75, 0x76, 0xcd, 0x76, 0x7e, 0x55, 0x64, 0x7e, 0x72, 0xac, 0x1b, 0x8c, 0xc6, 0xa4,
- 0x06, 0x03, 0x96, 0x52, 0x20, 0xa4, 0xe4, 0x90, 0xb9, 0x94, 0xe1, 0x42, 0x55, 0xb9, 0x53, 0x83,
- 0xf2, 0xab, 0xc3, 0x17, 0x87, 0x47, 0xaf, 0x0f, 0x1b, 0xb7, 0x50, 0x15, 0x26, 0xd6, 0xb7, 0xb6,
- 0xb6, 0xb7, 0x44, 0xfe, 0xbe, 0x79, 0x74, 0xbc, 0xbf, 0xbd, 0x25, 0xf2, 0xf7, 0xad, 0xed, 0x97,
- 0xdb, 0xa7, 0xdb, 0x5b, 0x8d, 0x12, 0xaa, 0x43, 0xe5, 0xe0, 0x68, 0x6b, 0x7f, 0x87, 0xb1, 0xc6,
- 0x19, 0xcb, 0xdc, 0x3e, 0x5c, 0x3f, 0xd8, 0xde, 0x6a, 0x4c, 0xa0, 0x06, 0xd4, 0x4f, 0x3f, 0x3f,
- 0xde, 0xb6, 0x36, 0xf7, 0xd6, 0x0f, 0x77, 0xb7, 0xb7, 0x1a, 0x93, 0xc6, 0x25, 0x34, 0x4f, 0xb0,
- 0x4d, 0x9d, 0xce, 0x8e, 0xeb, 0xe1, 0x60, 0xe3, 0x9a, 0x1d, 0x97, 0x45, 0x56, 0xf5, 0x2c, 0x4c,
- 0x7c, 0xd5, 0xc7, 0x32, 0xc3, 0xa8, 0x9a, 0xa2, 0x31, 0xc8, 0xf5, 0x4a, 0x51, 0xae, 0x67, 0x7c,
- 0x0c, 0x0b, 0x19, 0x76, 0xd5, 0x0b, 0xac, 0xcd, 0xc8, 0x7c, 0xd1, 0xd6, 0x4d, 0xd1, 0x30, 0xfe,
- 0xa0, 0xc1, 0xbd, 0x44, 0x9f, 0x4d, 0xe2, 0x87, 0xd8, 0x0f, 0x7f, 0x06, 0x77, 0xd1, 0x7b, 0xd0,
- 0x70, 0x3a, 0x7d, 0xff, 0x02, 0xb3, 0x14, 0x54, 0x78, 0x29, 0x31, 0xb6, 0x3b, 0x92, 0x1e, 0x1d,
- 0x12, 0xd7, 0xb0, 0x98, 0xed, 0xa5, 0x1c, 0x5c, 0x13, 0xca, 0x5d, 0x3b, 0x74, 0x3a, 0xd1, 0xf0,
- 0x06, 0x4d, 0xb4, 0x04, 0xc0, 0x3f, 0xad, 0xd8, 0xa5, 0x5b, 0xe5, 0x94, 0x2d, 0x3b, 0xb4, 0xd1,
- 0x7d, 0xa8, 0x63, 0xbf, 0x65, 0x91, 0xb6, 0xc5, 0x69, 0x12, 0xfb, 0x03, 0xec, 0xb7, 0x8e, 0xda,
- 0x07, 0x8c, 0x62, 0xfc, 0x55, 0x83, 0x3b, 0xc7, 0x14, 0x4b, 0x04, 0x4d, 0x44, 0x25, 0x33, 0xfd,
- 0xd3, 0x7e, 0x02, 0xa2, 0xf1, 0x29, 0x4c, 0x47, 0x60, 0xc5, 0xdb, 0xe4, 0x8f, 0x03, 0x1c, 0x23,
- 0x52, 0xf0, 0x1c, 0x6a, 0xe4, 0xec, 0x97, 0xd8, 0x09, 0xad, 0x1e, 0x7b, 0x59, 0x96, 0x92, 0x5d,
- 0x8f, 0x38, 0xeb, 0x98, 0x10, 0xcf, 0x04, 0x12, 0x7d, 0x1b, 0x08, 0x1a, 0x6a, 0x24, 0x32, 0xb2,
- 0xdf, 0x69, 0x30, 0x29, 0x80, 0xc1, 0x41, 0x36, 0xa3, 0x45, 0xd9, 0x0c, 0x3b, 0x7d, 0xf8, 0x13,
- 0x40, 0x4c, 0x24, 0xff, 0x46, 0xff, 0x03, 0x0b, 0xd1, 0xa1, 0x4f, 0xa8, 0xfb, 0x0d, 0xdf, 0x50,
- 0x56, 0x07, 0xdb, 0x2d, 0x4c, 0xe5, 0x59, 0x3a, 0x3f, 0xb8, 0x04, 0x22, 0xfe, 0x1e, 0x67, 0xa3,
- 0x77, 0xe0, 0x76, 0xd7, 0x65, 0x2f, 0x7f, 0x8b, 0xe2, 0x76, 0xd7, 0xee, 0x05, 0xcd, 0x71, 0xfe,
- 0x1c, 0x9d, 0x12, 0x54, 0x53, 0x10, 0x8d, 0xdf, 0x6a, 0x30, 0xc7, 0xbd, 0xdc, 0x3b, 0x3d, 0x3d,
- 0x2e, 0x0e, 0xf8, 0x3e, 0x4e, 0x00, 0xbe, 0x69, 0xcc, 0x74, 0x00, 0x00, 0xc7, 0x10, 0xdd, 0x52,
- 0x02, 0xd1, 0x35, 0x16, 0x60, 0x3e, 0xe5, 0x8f, 0x8c, 0xdf, 0x09, 0x2c, 0xed, 0xe2, 0x50, 0x04,
- 0x7c, 0xcb, 0xa5, 0xd8, 0xb9, 0x09, 0x98, 0xfe, 0xbf, 0x60, 0x39, 0x4f, 0xe9, 0x08, 0xb8, 0xfe,
- 0xf7, 0x1a, 0xcc, 0x6e, 0x7a, 0xc4, 0xc7, 0xec, 0x9e, 0xe5, 0x93, 0x5f, 0x28, 0x68, 0xe3, 0x7c,
- 0x65, 0x8d, 0xe5, 0xae, 0x2c, 0xce, 0x8f, 0x05, 0xb7, 0x34, 0x2a, 0xb8, 0xc6, 0x3c, 0xdc, 0x1d,
- 0xf2, 0x4d, 0x06, 0xf0, 0xcf, 0x1a, 0x2c, 0x26, 0x38, 0xfb, 0x7e, 0x88, 0xa9, 0x6f, 0xff, 0x2c,
- 0xde, 0x67, 0x6e, 0xe4, 0xd2, 0x4f, 0xc0, 0x71, 0x56, 0x60, 0x29, 0xc7, 0x79, 0x85, 0xb2, 0xb3,
- 0x48, 0x5c, 0xde, 0x1c, 0xca, 0x9e, 0x56, 0x27, 0x4d, 0x51, 0x66, 0xca, 0xe7, 0x67, 0xfe, 0x0d,
- 0x98, 0xe2, 0xf7, 0x3a, 0xf6, 0xec, 0xd0, 0xbd, 0xc4, 0xf1, 0x54, 0xbf, 0x3e, 0x20, 0xf2, 0x74,
- 0x9f, 0xfb, 0x33, 0x6c, 0x53, 0xf8, 0xb3, 0xf6, 0xb7, 0x65, 0x5e, 0x23, 0x1c, 0x54, 0x9b, 0x44,
- 0x11, 0x15, 0x7d, 0x09, 0x8d, 0xe1, 0xca, 0x26, 0x5a, 0x49, 0xbb, 0x92, 0x28, 0xa1, 0xea, 0xf7,
- 0xf3, 0x05, 0xe4, 0xe0, 0xab, 0x3f, 0x7c, 0xff, 0x64, 0xa2, 0x32, 0xa6, 0x6b, 0x1f, 0x23, 0x67,
- 0x50, 0x9a, 0x8c, 0xd5, 0x2d, 0x51, 0x5c, 0x43, 0x66, 0x89, 0x54, 0x7f, 0x30, 0x42, 0x22, 0x61,
- 0x44, 0x63, 0x46, 0x0e, 0x01, 0x54, 0x45, 0x12, 0x2d, 0x24, 0xfb, 0xc6, 0x6a, 0xa2, 0xba, 0x9e,
- 0xc5, 0x4a, 0xeb, 0x7b, 0x03, 0xb7, 0x93, 0x95, 0x45, 0xb4, 0x14, 0xbd, 0xca, 0xb2, 0x6a, 0x9c,
- 0xfa, 0x72, 0x1e, 0x3b, 0x53, 0x77, 0xb2, 0xea, 0xa7, 0x74, 0x67, 0x96, 0x16, 0x95, 0xee, 0xec,
- 0x62, 0x61, 0x5c, 0x77, 0x1b, 0x50, 0xba, 0x6c, 0x87, 0xa2, 0x58, 0xe6, 0xd6, 0x0f, 0x75, 0x63,
- 0x94, 0x48, 0xda, 0xce, 0x2f, 0xa0, 0x16, 0x2b, 0x62, 0xa1, 0x28, 0xaa, 0xe9, 0xa2, 0xa0, 0x7e,
- 0x2f, 0x93, 0x97, 0x56, 0xf9, 0x25, 0x34, 0x86, 0x33, 0x14, 0xb5, 0x12, 0x73, 0x4a, 0x63, 0x6a,
- 0x25, 0xe6, 0x16, 0xbb, 0x62, 0x16, 0x8e, 0x01, 0x54, 0xd5, 0x47, 0x2d, 0x92, 0x54, 0xd9, 0x49,
- 0x2d, 0x92, 0x74, 0x91, 0x28, 0xa6, 0xef, 0x99, 0xc6, 0x7c, 0x1e, 0x2e, 0xe7, 0x28, 0x9f, 0x73,
- 0xea, 0x46, 0xca, 0xe7, 0xbc, 0x4a, 0xd0, 0xd0, 0xee, 0x49, 0x15, 0x4a, 0xd4, 0xee, 0xc9, 0x2b,
- 0x0c, 0xa9, 0xdd, 0x93, 0x5b, 0x65, 0x89, 0x07, 0xe6, 0xff, 0x60, 0x7c, 0x27, 0x70, 0x2e, 0xd0,
- 0x4c, 0xd4, 0x4b, 0x95, 0x59, 0xf4, 0xd9, 0x24, 0x31, 0xdd, 0x7b, 0x0f, 0x2a, 0x83, 0xc2, 0x03,
- 0x9a, 0x1f, 0x08, 0x0f, 0x95, 0x4f, 0xf4, 0x66, 0x9a, 0x91, 0xd6, 0xf4, 0x1a, 0xa6, 0x12, 0xe5,
- 0x03, 0xb4, 0x18, 0xd9, 0xce, 0xa8, 0x5f, 0xe8, 0x4b, 0x39, 0xdc, 0x74, 0x14, 0x0f, 0x01, 0x14,
- 0xbe, 0xaf, 0x66, 0x3e, 0x55, 0x7d, 0x50, 0x33, 0x9f, 0x51, 0x0e, 0x48, 0x6e, 0xb3, 0x34, 0x56,
- 0xaf, 0xb6, 0x59, 0x6e, 0xd5, 0x40, 0x6d, 0xb3, 0x7c, 0xa8, 0x3f, 0xee, 0x37, 0xb7, 0x33, 0x0c,
- 0xb3, 0xc7, 0xed, 0xe4, 0x00, 0xfe, 0x71, 0x3b, 0x79, 0x28, 0x7d, 0xdc, 0x4e, 0x3f, 0x5d, 0x7c,
- 0x96, 0x38, 0x39, 0x7a, 0x9c, 0xb7, 0xc3, 0x92, 0x80, 0xbd, 0xfe, 0xee, 0x8f, 0xca, 0xa5, 0xc3,
- 0xf8, 0x0a, 0xea, 0x71, 0xc0, 0x1c, 0xdd, 0x4b, 0xea, 0x48, 0xa0, 0x7b, 0xfa, 0x62, 0x36, 0x53,
- 0x6a, 0xad, 0xfc, 0xf0, 0xfd, 0x93, 0xf1, 0x8a, 0xd6, 0xd0, 0x9e, 0x69, 0xe8, 0x57, 0x1a, 0xe8,
- 0xf9, 0x00, 0x1e, 0x7a, 0x6f, 0x94, 0xa7, 0x49, 0x9b, 0xef, 0xbf, 0x8d, 0x68, 0x6a, 0x5c, 0x4f,
- 0x34, 0x76, 0x3e, 0xc6, 0x70, 0x77, 0x75, 0x3e, 0xa6, 0x31, 0x7f, 0x75, 0x3e, 0x66, 0x00, 0xf5,
- 0xf1, 0x60, 0xbd, 0x80, 0x6a, 0x04, 0x49, 0xa3, 0x66, 0x1e, 0xa0, 0xae, 0x2f, 0x64, 0x70, 0xd2,
- 0xca, 0x4e, 0xa1, 0x1e, 0xc7, 0x9a, 0x55, 0xe4, 0x33, 0x00, 0x6e, 0x15, 0xf9, 0x4c, 0x78, 0x7a,
- 0xe8, 0x56, 0x50, 0x40, 0x66, 0xec, 0x56, 0x48, 0xe1, 0xa4, 0xb1, 0x5b, 0x21, 0x8d, 0x7c, 0xc6,
- 0x57, 0x26, 0xe6, 0xbf, 0x2a, 0x24, 0x61, 0x48, 0x14, 0xff, 0x63, 0x20, 0x13, 0xf1, 0x54, 0xe7,
- 0x5f, 0x2e, 0x86, 0x19, 0x33, 0xf2, 0x4c, 0x63, 0xc7, 0x6c, 0x0a, 0x60, 0x54, 0x66, 0xf2, 0xb0,
- 0x4c, 0x65, 0x26, 0x17, 0x9d, 0x8c, 0x8f, 0x65, 0x1b, 0xca, 0xf2, 0x77, 0x22, 0x34, 0x17, 0x75,
- 0x4c, 0xfc, 0xa5, 0xa4, 0xcf, 0xa7, 0xe8, 0xe9, 0x28, 0x9f, 0x40, 0x2d, 0x86, 0x44, 0xa2, 0xf8,
- 0x65, 0x35, 0x84, 0x30, 0xaa, 0x28, 0x67, 0x40, 0x97, 0xc9, 0x00, 0xfc, 0x9a, 0xbd, 0xfb, 0x47,
- 0x00, 0x84, 0xe8, 0x83, 0x51, 0x5b, 0x61, 0xd8, 0xee, 0x87, 0x6f, 0x27, 0x9c, 0x1e, 0xdb, 0xe7,
- 0x30, 0x95, 0x40, 0xbd, 0xd4, 0x0d, 0x90, 0x05, 0x4a, 0xaa, 0x1b, 0x20, 0x13, 0x2a, 0x4b, 0x8e,
- 0xd0, 0x87, 0xd9, 0x2c, 0xd0, 0x02, 0x3d, 0x54, 0x1b, 0x26, 0x17, 0x78, 0xd1, 0x1f, 0x8d, 0x16,
- 0xca, 0xb2, 0x87, 0x61, 0x3a, 0x05, 0xff, 0xa8, 0x25, 0x95, 0x87, 0x48, 0xa9, 0x25, 0x95, 0x8b,
- 0x1d, 0x25, 0xcd, 0x74, 0x00, 0xa5, 0x0b, 0x37, 0x28, 0xf6, 0x7a, 0xce, 0xa9, 0x1c, 0xa9, 0x2b,
- 0x62, 0x44, 0xdd, 0x27, 0x71, 0xa6, 0x61, 0x98, 0x4e, 0x15, 0x6d, 0xd4, 0x80, 0xf2, 0xea, 0x43,
- 0x6a, 0x40, 0xb9, 0x15, 0x9f, 0xe4, 0x80, 0xf6, 0xa0, 0x32, 0x80, 0x45, 0xd4, 0x73, 0x62, 0x08,
- 0xf2, 0x51, 0xcf, 0x89, 0x14, 0x82, 0x12, 0x5b, 0x4c, 0x5f, 0xc0, 0x9d, 0x21, 0x9c, 0x00, 0x2d,
- 0x27, 0xde, 0x45, 0x29, 0x40, 0x43, 0x5f, 0xc9, 0xe5, 0xa7, 0xd5, 0x53, 0x98, 0xcb, 0x86, 0x05,
- 0xd0, 0x3b, 0xb1, 0x65, 0x99, 0x8f, 0x45, 0xe8, 0x8f, 0x7f, 0x4c, 0x2c, 0x7d, 0x84, 0xbc, 0x86,
- 0xa9, 0x44, 0x82, 0xab, 0xf6, 0x47, 0x16, 0xd4, 0xa0, 0xf6, 0x47, 0x76, 0xb2, 0x1f, 0x1b, 0x0c,
- 0x19, 0x02, 0x04, 0x06, 0x99, 0x33, 0x7a, 0x94, 0xa9, 0x62, 0x08, 0x15, 0xd0, 0xdf, 0xf9, 0x11,
- 0xa9, 0xcc, 0xe7, 0xfe, 0x70, 0xea, 0x1c, 0x4f, 0x3c, 0x33, 0x73, 0xf4, 0x78, 0xe2, 0x99, 0x93,
- 0x75, 0x0f, 0x5b, 0x48, 0x26, 0xc3, 0x71, 0x0b, 0x99, 0xa9, 0x79, 0xdc, 0x42, 0x76, 0x1e, 0x1d,
- 0xb3, 0xb0, 0xf1, 0xec, 0x0d, 0x93, 0xf6, 0xec, 0xb3, 0x55, 0x87, 0x74, 0x9f, 0x8a, 0xcf, 0x8f,
- 0x08, 0x3d, 0x7f, 0x2a, 0x74, 0x3c, 0xe5, 0xff, 0x22, 0x3f, 0x3d, 0x27, 0xb2, 0xdd, 0x3b, 0x3b,
- 0x9b, 0xe4, 0xa4, 0xe7, 0xff, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x8d, 0x5d, 0xcc, 0x2f, 0xd0, 0x2c,
- 0x00, 0x00,
+ // 2952 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xcb, 0x6f, 0x1c, 0xc7,
+ 0xd1, 0xd7, 0x70, 0x49, 0xee, 0x6e, 0xed, 0x4a, 0x5a, 0xb6, 0x28, 0x71, 0x39, 0x22, 0x45, 0x69,
+ 0x24, 0xcb, 0xf2, 0x8b, 0x92, 0xa9, 0x0f, 0xf8, 0x8c, 0xef, 0x01, 0x83, 0x6f, 0xd2, 0x12, 0x1f,
+ 0x19, 0x52, 0x10, 0x2c, 0xc0, 0x18, 0x0f, 0x67, 0x7b, 0xb9, 0x13, 0xce, 0x4e, 0xaf, 0x7b, 0x7a,
+ 0x49, 0xd3, 0xa7, 0x1c, 0x12, 0xc0, 0xa7, 0x20, 0x3e, 0x19, 0xc8, 0x39, 0x7f, 0x41, 0x6e, 0x41,
+ 0x90, 0x7b, 0xee, 0x39, 0xe5, 0x5f, 0x31, 0x10, 0x24, 0xe8, 0xc7, 0x4e, 0xcf, 0xec, 0xcc, 0xac,
+ 0x65, 0x2c, 0xe3, 0xdc, 0xa6, 0xab, 0xaa, 0xab, 0xaa, 0xab, 0x9f, 0xf5, 0xab, 0x81, 0x26, 0xc5,
+ 0x3d, 0x12, 0xf9, 0x8c, 0xd0, 0xcb, 0x8f, 0x22, 0x4c, 0xcf, 0x7d, 0x0f, 0x2f, 0xf7, 0x28, 0x61,
+ 0x04, 0x4d, 0x9f, 0xfa, 0xcc, 0x0d, 0x2e, 0xcd, 0x7a, 0xd4, 0x71, 0x29, 0x6e, 0x49, 0xaa, 0xb5,
+ 0x07, 0x73, 0x76, 0xdc, 0x63, 0xf3, 0x6b, 0x3f, 0x62, 0x91, 0x8d, 0xbf, 0xea, 0xe3, 0x88, 0xa1,
+ 0x15, 0x00, 0xad, 0xac, 0x69, 0xdc, 0x37, 0x9e, 0xd4, 0x56, 0xd0, 0xb2, 0xd4, 0xb2, 0xac, 0x3b,
+ 0xd9, 0x09, 0x29, 0x6b, 0x05, 0x9a, 0x59, 0x75, 0x51, 0x8f, 0x84, 0x11, 0x46, 0x77, 0x60, 0x1a,
+ 0x0b, 0x8a, 0xd0, 0x55, 0xb1, 0x55, 0xcb, 0xda, 0x17, 0x7d, 0x5c, 0xef, 0x6c, 0x37, 0xf4, 0x28,
+ 0xee, 0xe2, 0x90, 0xb9, 0xc1, 0x38, 0x3e, 0xdc, 0x85, 0xf9, 0x1c, 0x7d, 0xd2, 0x09, 0x2b, 0x80,
+ 0x19, 0xc9, 0xdc, 0xea, 0x07, 0xe3, 0x58, 0x41, 0x0f, 0xe1, 0xba, 0x47, 0xb1, 0xcb, 0xb0, 0x73,
+ 0xe2, 0xb3, 0xae, 0xdb, 0x6b, 0x4e, 0x88, 0x41, 0xd5, 0x25, 0x71, 0x4d, 0xd0, 0xac, 0x59, 0x40,
+ 0x49, 0x6b, 0xca, 0x87, 0x1e, 0xdc, 0xde, 0x76, 0xe9, 0x89, 0x7b, 0x8a, 0xd7, 0x49, 0x10, 0x60,
+ 0x8f, 0xfd, 0xdb, 0xfd, 0x68, 0xc2, 0x9d, 0x61, 0x8b, 0xca, 0x97, 0x0d, 0xb8, 0xb1, 0x1e, 0x60,
+ 0x37, 0xec, 0xf7, 0xc6, 0x09, 0xf9, 0x0c, 0xdc, 0x8c, 0xb5, 0x28, 0xc5, 0x2f, 0xe0, 0xb6, 0x16,
+ 0x3e, 0xf2, 0xbf, 0xc1, 0xe3, 0xe8, 0xff, 0x10, 0xee, 0x0c, 0x2b, 0x53, 0x8b, 0x0a, 0xc1, 0x64,
+ 0xe4, 0x7f, 0x83, 0x85, 0x9e, 0x92, 0x2d, 0xbe, 0xad, 0x33, 0x98, 0x5f, 0xed, 0xf5, 0x82, 0xcb,
+ 0x6d, 0x9f, 0xb9, 0x8c, 0x51, 0xff, 0xa4, 0xcf, 0xf0, 0x38, 0xab, 0x1a, 0x99, 0x50, 0xa1, 0xf8,
+ 0xdc, 0x8f, 0x7c, 0x12, 0x8a, 0xf0, 0xd6, 0xed, 0xb8, 0x6d, 0x2d, 0x80, 0x99, 0x67, 0x4c, 0x45,
+ 0xe1, 0x4f, 0x13, 0x80, 0xb6, 0x30, 0xf3, 0x3a, 0x36, 0xee, 0x12, 0x36, 0x4e, 0x0c, 0xf8, 0xf6,
+ 0xa1, 0x42, 0x89, 0x70, 0xa1, 0x6a, 0xab, 0x16, 0x9a, 0x85, 0xa9, 0x36, 0xa1, 0x1e, 0x6e, 0x96,
+ 0xc4, 0xc4, 0xcb, 0x06, 0x9a, 0x83, 0x72, 0x48, 0x1c, 0xe6, 0x9e, 0x46, 0xcd, 0x49, 0xb9, 0xdb,
+ 0x42, 0x72, 0xec, 0x9e, 0x46, 0xa8, 0x09, 0x65, 0xe6, 0x77, 0x31, 0xe9, 0xb3, 0xe6, 0xd4, 0x7d,
+ 0xe3, 0xc9, 0x94, 0x3d, 0x68, 0xf2, 0x2e, 0x51, 0xd4, 0x71, 0xce, 0xf0, 0x65, 0x73, 0x5a, 0x5a,
+ 0x88, 0xa2, 0xce, 0x0b, 0x7c, 0x89, 0x96, 0xa0, 0x76, 0x16, 0x92, 0x8b, 0xd0, 0xe9, 0x10, 0xbe,
+ 0x7b, 0xcb, 0x82, 0x09, 0x82, 0xb4, 0xc3, 0x29, 0x68, 0x1e, 0x2a, 0x21, 0x71, 0x7a, 0xb4, 0x1f,
+ 0xe2, 0x66, 0x55, 0x58, 0x2b, 0x87, 0xe4, 0x90, 0x37, 0xd1, 0x73, 0xb8, 0x2e, 0xfd, 0x74, 0x7a,
+ 0x2e, 0x75, 0xbb, 0x51, 0x13, 0xc4, 0x60, 0x6f, 0xe8, 0xc1, 0x8a, 0xb8, 0xd4, 0xa5, 0xd0, 0xa1,
+ 0x90, 0xf9, 0x6c, 0xb2, 0x52, 0x69, 0x54, 0xad, 0xdb, 0x70, 0x2b, 0x15, 0x3a, 0x15, 0xd2, 0x3d,
+ 0x98, 0x5b, 0x17, 0x6b, 0x3b, 0x11, 0xa7, 0x31, 0x96, 0x96, 0x09, 0xcd, 0xac, 0x3a, 0x65, 0xea,
+ 0x9f, 0x06, 0xcc, 0x6c, 0x63, 0xb6, 0x4a, 0xbd, 0x8e, 0x7f, 0x3e, 0xd6, 0xe4, 0xdd, 0x85, 0xaa,
+ 0x47, 0xba, 0x5d, 0x9f, 0x39, 0x7e, 0x4b, 0xcd, 0x5f, 0x45, 0x12, 0x76, 0x5b, 0x7c, 0x66, 0x7b,
+ 0x14, 0xb7, 0xfd, 0xaf, 0xc5, 0x14, 0x56, 0x6d, 0xd5, 0x42, 0x9f, 0xc0, 0x74, 0x9b, 0xd0, 0xae,
+ 0xcb, 0xc4, 0x14, 0xde, 0x58, 0xb9, 0x3f, 0x30, 0x92, 0xf1, 0x69, 0x79, 0x4b, 0xc8, 0xd9, 0x4a,
+ 0x9e, 0xef, 0x8a, 0x9e, 0xcb, 0x3a, 0x62, 0x86, 0xeb, 0xb6, 0xf8, 0xb6, 0x9e, 0xc3, 0xb4, 0x94,
+ 0x42, 0x65, 0x28, 0xbd, 0xd9, 0x3d, 0x6c, 0x5c, 0xe3, 0x1f, 0xc7, 0xab, 0x76, 0xc3, 0x40, 0x00,
+ 0xd3, 0xc7, 0xab, 0xb6, 0xb3, 0xfd, 0xa6, 0x31, 0x81, 0x6a, 0x50, 0xe6, 0xdf, 0x6b, 0x6f, 0x56,
+ 0x1a, 0x25, 0xeb, 0x09, 0xa0, 0xa4, 0x31, 0xbd, 0xe9, 0x5a, 0x2e, 0x73, 0xc5, 0xd8, 0xeb, 0xb6,
+ 0xf8, 0xe6, 0xd3, 0xb2, 0xe3, 0x46, 0x2f, 0x89, 0xe7, 0x06, 0x6b, 0xd4, 0x0d, 0xbd, 0xce, 0x58,
+ 0x5b, 0xce, 0x7a, 0x06, 0xcd, 0xac, 0x3a, 0x65, 0x7e, 0x16, 0xa6, 0xce, 0xdd, 0xa0, 0x8f, 0xd5,
+ 0x3d, 0x22, 0x1b, 0xd6, 0xdf, 0x0c, 0x68, 0x8a, 0xf5, 0x72, 0x44, 0xfa, 0xd4, 0xc3, 0xb2, 0xd7,
+ 0x38, 0x73, 0xf6, 0x29, 0xcc, 0x44, 0x42, 0x95, 0x93, 0xe8, 0x3a, 0x51, 0xd8, 0xb5, 0x21, 0x85,
+ 0xed, 0xd4, 0xd1, 0xac, 0x14, 0x9c, 0x08, 0x67, 0xc4, 0xf4, 0xd6, 0xed, 0x7a, 0x94, 0x70, 0x10,
+ 0x2d, 0x02, 0x30, 0x97, 0x9e, 0x62, 0xe6, 0x50, 0xdc, 0x16, 0x13, 0x5d, 0xb7, 0xab, 0x92, 0x62,
+ 0xe3, 0xb6, 0xf5, 0x1c, 0xe6, 0x73, 0x06, 0xa5, 0x6f, 0x54, 0x8a, 0xa3, 0x7e, 0xc0, 0x06, 0x37,
+ 0xaa, 0x6c, 0x59, 0xab, 0x50, 0xdb, 0x8a, 0xbc, 0xb3, 0x71, 0xe2, 0xff, 0x08, 0xea, 0x52, 0x85,
+ 0x8e, 0x39, 0xa6, 0x94, 0x50, 0x35, 0xe7, 0xb2, 0x61, 0xfd, 0xd1, 0x80, 0x9b, 0xaf, 0xa9, 0xcf,
+ 0x37, 0x4f, 0x7b, 0x9c, 0x50, 0x37, 0xa0, 0xc4, 0x47, 0x2f, 0xcf, 0x56, 0xfe, 0x99, 0x3a, 0x72,
+ 0x4b, 0xe9, 0x23, 0x17, 0x3d, 0x80, 0x3a, 0x09, 0x5a, 0x4e, 0xcc, 0x97, 0x41, 0xab, 0x91, 0xa0,
+ 0x65, 0x0f, 0x44, 0xe2, 0x43, 0x71, 0x2a, 0x71, 0x28, 0x7e, 0x36, 0x59, 0x99, 0x6e, 0x94, 0xad,
+ 0x26, 0x34, 0xb4, 0xcf, 0x72, 0x78, 0x9f, 0x4d, 0x56, 0x8c, 0xc6, 0x84, 0xd5, 0x81, 0xd9, 0x2d,
+ 0x3f, 0x6c, 0xed, 0x61, 0x7a, 0x8a, 0xd7, 0xdc, 0x68, 0xac, 0x1d, 0xbf, 0x00, 0xd5, 0x81, 0x83,
+ 0x51, 0x73, 0xe2, 0x7e, 0x89, 0x4f, 0x6b, 0x4c, 0xb0, 0x3e, 0x80, 0xdb, 0x43, 0x96, 0xf4, 0xd6,
+ 0x3a, 0x71, 0x23, 0xb9, 0xb4, 0xab, 0xb6, 0xf8, 0xb6, 0xbe, 0x35, 0x60, 0x46, 0x9e, 0x51, 0x5b,
+ 0x84, 0x9e, 0xfd, 0x27, 0x97, 0x34, 0x7f, 0xd0, 0x24, 0x3d, 0x89, 0x1f, 0x55, 0xf3, 0xbb, 0x91,
+ 0x8d, 0xb9, 0xb3, 0xbb, 0xe1, 0x21, 0x25, 0xa7, 0x14, 0x47, 0xd1, 0x98, 0xc7, 0x25, 0x15, 0xea,
+ 0x12, 0xc7, 0xa5, 0x24, 0xec, 0xb6, 0xac, 0xff, 0x07, 0x33, 0xcf, 0x9a, 0x0a, 0xe0, 0x12, 0xd4,
+ 0xfc, 0xd0, 0xe9, 0x29, 0xb2, 0xda, 0x18, 0xe0, 0xc7, 0x82, 0xd2, 0xd9, 0xa3, 0xaf, 0xfa, 0x6e,
+ 0xd4, 0xb9, 0x32, 0x67, 0x23, 0xa1, 0x2e, 0xe1, 0xac, 0x24, 0x0c, 0x9c, 0xcd, 0x5a, 0x7b, 0x5b,
+ 0x67, 0xdb, 0x70, 0x6f, 0xf8, 0x76, 0xda, 0xa2, 0xa4, 0xfb, 0xca, 0x7e, 0x39, 0xe6, 0x76, 0xeb,
+ 0xd3, 0x40, 0xf9, 0xca, 0x3f, 0xad, 0x07, 0xb0, 0x54, 0x68, 0x47, 0x4d, 0xf2, 0x2e, 0xdc, 0x92,
+ 0x22, 0x6b, 0xfd, 0xb0, 0x15, 0x8c, 0xf5, 0x9c, 0x7b, 0x1f, 0x66, 0xd3, 0xaa, 0x46, 0xdc, 0x2b,
+ 0xdf, 0x4e, 0x40, 0xe3, 0x08, 0xb3, 0x75, 0x12, 0xb6, 0xfd, 0xd3, 0x71, 0x06, 0xfd, 0x09, 0x94,
+ 0x71, 0xc8, 0xa8, 0x8f, 0xe5, 0x76, 0xac, 0xad, 0xdc, 0x1b, 0x74, 0x18, 0x56, 0xbf, 0xbc, 0x19,
+ 0x32, 0x7a, 0x69, 0x0f, 0xc4, 0xcd, 0xdf, 0x18, 0x30, 0x25, 0x48, 0x3c, 0x70, 0xfc, 0x79, 0x24,
+ 0x37, 0x27, 0xff, 0x44, 0x8b, 0x50, 0x15, 0xd7, 0x8f, 0x13, 0x31, 0x2a, 0x03, 0xba, 0x73, 0xcd,
+ 0xae, 0x08, 0xd2, 0x11, 0xa3, 0xe8, 0x01, 0xd4, 0x24, 0xdb, 0x0f, 0xd9, 0xf3, 0x15, 0x71, 0x92,
+ 0x4d, 0xed, 0x5c, 0xb3, 0x41, 0x10, 0x77, 0x39, 0x0d, 0x2d, 0x81, 0x6c, 0x39, 0x27, 0x84, 0x04,
+ 0xf2, 0xb1, 0xb6, 0x73, 0xcd, 0x96, 0x5a, 0xd7, 0x08, 0x09, 0xd6, 0xca, 0xea, 0xba, 0xb3, 0x6e,
+ 0xc1, 0x4c, 0xc2, 0x55, 0x35, 0x2d, 0x5f, 0xc0, 0xad, 0x0d, 0x1c, 0x60, 0x86, 0xc7, 0x8f, 0x10,
+ 0x82, 0xc9, 0x33, 0x7c, 0x29, 0xc3, 0x53, 0xb5, 0xc5, 0xb7, 0x75, 0x07, 0x66, 0xd3, 0xea, 0x95,
+ 0x59, 0x8f, 0x27, 0x59, 0x11, 0x23, 0x14, 0xaf, 0xf7, 0x23, 0x46, 0xba, 0x3b, 0x84, 0x9c, 0x45,
+ 0x63, 0x1a, 0x17, 0x73, 0x3f, 0x91, 0x98, 0xfb, 0x05, 0x30, 0xf3, 0x8c, 0x28, 0x17, 0xf6, 0xa1,
+ 0xb9, 0xe6, 0x7a, 0x67, 0xfd, 0xde, 0xd5, 0x78, 0x60, 0x3d, 0x85, 0xf9, 0x1c, 0x7d, 0x23, 0x96,
+ 0xe6, 0x19, 0x3c, 0xc8, 0xdb, 0x34, 0x63, 0xef, 0x8f, 0xdc, 0x58, 0x3c, 0x02, 0x6b, 0x94, 0x31,
+ 0x15, 0x93, 0x1d, 0x40, 0xfc, 0x5e, 0x79, 0xe9, 0x7b, 0x38, 0x1c, 0xeb, 0xfe, 0xb2, 0xd6, 0xe1,
+ 0x56, 0x4a, 0x93, 0x8a, 0xc3, 0x87, 0x80, 0x02, 0x49, 0x72, 0xa2, 0x0e, 0xa1, 0xcc, 0x09, 0xdd,
+ 0xee, 0xe0, 0xb6, 0x6a, 0x28, 0xce, 0x11, 0x67, 0xec, 0xbb, 0x5d, 0x31, 0x45, 0xdb, 0x98, 0xed,
+ 0x86, 0x6d, 0xb2, 0x7a, 0x15, 0x89, 0x98, 0xf5, 0xbf, 0x30, 0x9f, 0xa3, 0x4f, 0xb9, 0x76, 0x0f,
+ 0x40, 0x67, 0x60, 0x6a, 0xa2, 0x12, 0x14, 0xee, 0xcc, 0xba, 0x1b, 0x78, 0xfd, 0xc0, 0x65, 0x78,
+ 0xbd, 0x83, 0xbd, 0xb3, 0xa8, 0xdf, 0x1d, 0xc7, 0x99, 0xff, 0x86, 0xf9, 0x1c, 0x7d, 0xca, 0x19,
+ 0x13, 0x2a, 0x9e, 0xa2, 0xa9, 0xe8, 0xc4, 0x6d, 0x3e, 0x49, 0xdb, 0x98, 0x1d, 0x85, 0x6e, 0x2f,
+ 0xea, 0x90, 0x71, 0x92, 0x7f, 0xeb, 0x3d, 0xb8, 0x95, 0xd2, 0x34, 0x62, 0xb1, 0x7e, 0x67, 0xc0,
+ 0xc3, 0xbc, 0x05, 0x74, 0x05, 0x6e, 0xf0, 0xfc, 0xaf, 0xc3, 0x58, 0xcf, 0xd1, 0x97, 0x4a, 0x99,
+ 0xb7, 0x5f, 0xd1, 0x80, 0x5f, 0x8e, 0x82, 0xe5, 0xf6, 0x59, 0x47, 0xa5, 0x37, 0x42, 0x76, 0xb5,
+ 0xcf, 0x3a, 0xd6, 0x63, 0x78, 0x34, 0xda, 0x25, 0xb5, 0xaa, 0x7f, 0x67, 0xc0, 0xec, 0x36, 0x66,
+ 0xb6, 0x7b, 0xb1, 0xde, 0x71, 0xc3, 0xd3, 0xf1, 0x92, 0xf9, 0x87, 0x70, 0xbd, 0x4d, 0x49, 0xd7,
+ 0x49, 0x65, 0xf4, 0x55, 0xbb, 0xce, 0x89, 0xf1, 0xfb, 0x71, 0x09, 0x6a, 0x8c, 0x38, 0xa9, 0x17,
+ 0x68, 0xd5, 0x06, 0x46, 0x06, 0x02, 0xd6, 0x5f, 0x26, 0xe1, 0xf6, 0x90, 0x4b, 0x2a, 0xf8, 0x3b,
+ 0x50, 0xa3, 0xee, 0x85, 0xe3, 0x49, 0x72, 0xd3, 0x10, 0x77, 0xcd, 0xbb, 0x89, 0xd4, 0x2d, 0xdb,
+ 0x67, 0x39, 0x26, 0xd9, 0x40, 0x63, 0xae, 0xf9, 0xf7, 0x12, 0x54, 0x63, 0x0e, 0x4f, 0xcf, 0x4f,
+ 0x02, 0x72, 0xc2, 0x1f, 0x19, 0x72, 0x41, 0x4d, 0xf3, 0xe6, 0x6e, 0x2b, 0x86, 0x40, 0x26, 0x34,
+ 0x04, 0x82, 0x16, 0xa1, 0x12, 0xe2, 0x0b, 0x47, 0x24, 0x81, 0xc2, 0xf9, 0xb5, 0x89, 0xa6, 0x61,
+ 0x97, 0x43, 0x7c, 0x71, 0xe8, 0x32, 0x9e, 0x74, 0x54, 0xf8, 0x0b, 0x5a, 0xb0, 0x27, 0x35, 0x9b,
+ 0x04, 0x2d, 0xc1, 0x3e, 0x80, 0x2a, 0xe9, 0x61, 0xea, 0x32, 0x3e, 0xf6, 0x29, 0x91, 0x7b, 0x7e,
+ 0xfc, 0x96, 0x03, 0x58, 0x3e, 0x18, 0x74, 0xb4, 0xb5, 0x0e, 0x1e, 0x73, 0x1e, 0x13, 0xad, 0x54,
+ 0x02, 0x0c, 0x75, 0xea, 0x5e, 0xc4, 0xf2, 0x7c, 0x15, 0x71, 0xa7, 0xba, 0xa4, 0x85, 0x05, 0xc6,
+ 0x30, 0x25, 0x1c, 0xda, 0x23, 0x2d, 0x2c, 0x00, 0x06, 0x7c, 0x21, 0x59, 0x15, 0xc9, 0x0a, 0xf1,
+ 0x85, 0x60, 0x3d, 0x82, 0x1b, 0x83, 0x91, 0x3a, 0x27, 0x97, 0x7c, 0xe7, 0x57, 0x65, 0x96, 0xa5,
+ 0xc6, 0xba, 0xc6, 0x69, 0x5c, 0x6a, 0x30, 0x60, 0x25, 0x05, 0x52, 0x4a, 0x0d, 0x59, 0x48, 0x59,
+ 0x3e, 0x54, 0xb5, 0x3b, 0x35, 0x28, 0xbf, 0xda, 0x7f, 0xb1, 0x7f, 0xf0, 0x7a, 0xbf, 0x71, 0x0d,
+ 0x55, 0x61, 0x6a, 0x75, 0x63, 0x63, 0x73, 0x43, 0xe6, 0xca, 0xeb, 0x07, 0x87, 0xbb, 0x9b, 0x1b,
+ 0x32, 0x57, 0xde, 0xd8, 0x7c, 0xb9, 0x79, 0xbc, 0xb9, 0xd1, 0x28, 0xa1, 0x3a, 0x54, 0xf6, 0x0e,
+ 0x36, 0x76, 0xb7, 0x38, 0x6b, 0x92, 0xb3, 0xec, 0xcd, 0xfd, 0xd5, 0xbd, 0xcd, 0x8d, 0xc6, 0x14,
+ 0x6a, 0x40, 0xfd, 0xf8, 0xf3, 0xc3, 0x4d, 0x67, 0x7d, 0x67, 0x75, 0x7f, 0x7b, 0x73, 0xa3, 0x31,
+ 0x6d, 0x9d, 0x43, 0xf3, 0x08, 0xbb, 0xd4, 0xeb, 0x6c, 0xf9, 0x01, 0x8e, 0xd6, 0x2e, 0xf9, 0x71,
+ 0x39, 0xce, 0xaa, 0x9e, 0x85, 0xa9, 0xaf, 0xfa, 0x58, 0xbd, 0xe6, 0xab, 0xb6, 0x6c, 0x0c, 0xf2,
+ 0xaa, 0x52, 0x9c, 0x57, 0x59, 0x1f, 0xc3, 0x7c, 0x8e, 0x5d, 0x9d, 0xe4, 0xb5, 0x39, 0x59, 0x2c,
+ 0xda, 0xba, 0x2d, 0x1b, 0xd6, 0x1f, 0x0c, 0xb8, 0x9b, 0xea, 0xb3, 0x4e, 0x42, 0x86, 0x43, 0xf6,
+ 0x33, 0xb8, 0x8b, 0xde, 0x83, 0x86, 0xd7, 0xe9, 0x87, 0x67, 0x98, 0xa7, 0x7b, 0xd2, 0x4b, 0x85,
+ 0x67, 0xdd, 0x54, 0xf4, 0xf8, 0x90, 0xb8, 0x84, 0x85, 0x7c, 0x2f, 0xd5, 0xe0, 0x9a, 0x50, 0xee,
+ 0xba, 0xcc, 0xeb, 0xc4, 0xc3, 0x1b, 0x34, 0x79, 0x0a, 0x2e, 0x3e, 0x9d, 0xc4, 0xa5, 0x5b, 0x15,
+ 0x94, 0x0d, 0x97, 0xb9, 0xe8, 0x3e, 0xd4, 0x71, 0xd8, 0x72, 0x48, 0xdb, 0x11, 0x34, 0x85, 0xb3,
+ 0x01, 0x0e, 0x5b, 0x07, 0xed, 0x3d, 0x4e, 0xb1, 0xfe, 0x6a, 0xc0, 0xcd, 0x43, 0x8a, 0x15, 0x5a,
+ 0x25, 0xa3, 0x92, 0x9b, 0x6a, 0x19, 0x3f, 0x01, 0x3d, 0xf8, 0x14, 0x66, 0x62, 0x60, 0xe0, 0x6d,
+ 0x72, 0xb5, 0x01, 0x66, 0x10, 0x2b, 0x78, 0x0e, 0x35, 0x72, 0xf2, 0x4b, 0xec, 0x31, 0xa7, 0xc7,
+ 0x5f, 0x96, 0xa5, 0x74, 0xd7, 0x03, 0xc1, 0x3a, 0x24, 0x24, 0xb0, 0x81, 0xc4, 0xdf, 0x16, 0x82,
+ 0x86, 0x1e, 0x89, 0x8a, 0xec, 0x77, 0x06, 0x4c, 0x4b, 0x10, 0x6e, 0x90, 0x39, 0x18, 0x71, 0xe6,
+ 0xc0, 0x4f, 0x1f, 0xf1, 0x04, 0x90, 0x13, 0x29, 0xbe, 0xd1, 0xff, 0xc0, 0x7c, 0x7c, 0xe8, 0x13,
+ 0xea, 0x7f, 0x23, 0x36, 0x94, 0xd3, 0xc1, 0x6e, 0x0b, 0x53, 0x75, 0x96, 0xce, 0x0d, 0x2e, 0x81,
+ 0x98, 0xbf, 0x23, 0xd8, 0xe8, 0x1d, 0xb8, 0xd1, 0xf5, 0x29, 0x25, 0xd4, 0xa1, 0xb8, 0xdd, 0x75,
+ 0x7b, 0x51, 0x73, 0x52, 0x3c, 0x47, 0xaf, 0x4b, 0xaa, 0x2d, 0x89, 0xd6, 0x6f, 0x0d, 0xb8, 0x23,
+ 0xbc, 0xdc, 0x39, 0x3e, 0x3e, 0x1c, 0x1f, 0x5c, 0x7d, 0x9c, 0x02, 0x57, 0xb3, 0xf8, 0xe4, 0x00,
+ 0x6c, 0x4d, 0xa0, 0xa7, 0xa5, 0x14, 0x7a, 0x6a, 0xcd, 0xc3, 0x5c, 0xc6, 0x1f, 0x15, 0xbf, 0x23,
+ 0x58, 0xdc, 0xc6, 0x4c, 0x06, 0x7c, 0xc3, 0xa7, 0xd8, 0xbb, 0x0a, 0x48, 0xfc, 0xbf, 0xe0, 0x5e,
+ 0x91, 0xd2, 0x11, 0xd0, 0xf8, 0xef, 0x0d, 0x98, 0x5d, 0x0f, 0x48, 0x88, 0xf9, 0x3d, 0x2b, 0x26,
+ 0x7f, 0xac, 0xa0, 0x4d, 0x8a, 0x95, 0x35, 0x51, 0xb8, 0xb2, 0x04, 0x3f, 0x11, 0xdc, 0xd2, 0xa8,
+ 0xe0, 0x5a, 0x73, 0x70, 0x7b, 0xc8, 0x37, 0x15, 0xc0, 0x3f, 0x1b, 0xb0, 0x90, 0xe2, 0xec, 0x86,
+ 0x0c, 0xd3, 0xd0, 0xfd, 0x59, 0xbc, 0xcf, 0xdd, 0xc8, 0xa5, 0x9f, 0x80, 0x99, 0x2c, 0xc1, 0x62,
+ 0x81, 0xf3, 0x1a, 0xd1, 0xe6, 0x91, 0x38, 0xbf, 0x3a, 0x44, 0x3b, 0xab, 0x4e, 0x99, 0xa2, 0xdc,
+ 0x54, 0x28, 0xce, 0xfc, 0x2b, 0x30, 0x25, 0xee, 0x75, 0x1c, 0xb8, 0xcc, 0x3f, 0xc7, 0xf2, 0x31,
+ 0xa1, 0xde, 0x52, 0x03, 0x22, 0xbf, 0x5a, 0xa5, 0x3f, 0xc3, 0x36, 0xa5, 0x3f, 0x2b, 0xff, 0x58,
+ 0x14, 0xf5, 0xb8, 0x41, 0x65, 0x47, 0x16, 0x2c, 0xd1, 0x97, 0xd0, 0x18, 0xae, 0x22, 0xa2, 0xa5,
+ 0xac, 0x2b, 0xa9, 0x72, 0xa5, 0x79, 0xbf, 0x58, 0x40, 0x0d, 0xbe, 0xfa, 0xc3, 0xf7, 0x4f, 0xa6,
+ 0x2a, 0x13, 0xa6, 0xf1, 0x31, 0xf2, 0x06, 0x65, 0xc0, 0x44, 0x8d, 0x10, 0x25, 0x35, 0xe4, 0x96,
+ 0x23, 0xcd, 0x07, 0x23, 0x24, 0x52, 0x46, 0x0c, 0x6e, 0x64, 0x1f, 0x40, 0x57, 0xff, 0xd0, 0x7c,
+ 0xba, 0x6f, 0xa2, 0xfe, 0x68, 0x9a, 0x79, 0xac, 0xac, 0xbe, 0x37, 0x70, 0x23, 0x5d, 0xc5, 0x43,
+ 0x8b, 0xf1, 0xab, 0x2c, 0xaf, 0x9e, 0x68, 0xde, 0x2b, 0x62, 0xe7, 0xea, 0x4e, 0x57, 0xd8, 0xb4,
+ 0xee, 0xdc, 0x32, 0x9e, 0xd6, 0x9d, 0x5f, 0x98, 0x4b, 0xea, 0x6e, 0x03, 0xca, 0x96, 0xc8, 0x50,
+ 0x1c, 0xcb, 0xc2, 0x5a, 0x9d, 0x69, 0x8d, 0x12, 0xc9, 0xda, 0xf9, 0x05, 0xd4, 0x12, 0x05, 0x23,
+ 0x14, 0x47, 0x35, 0x5b, 0x80, 0x33, 0xef, 0xe6, 0xf2, 0xb2, 0x2a, 0xbf, 0x84, 0xc6, 0x70, 0x86,
+ 0xa2, 0x57, 0x62, 0x41, 0x19, 0x4a, 0xaf, 0xc4, 0xc2, 0xc2, 0x52, 0xc2, 0xc2, 0x21, 0x80, 0xae,
+ 0xb0, 0xe8, 0x45, 0x92, 0x29, 0xf1, 0xe8, 0x45, 0x92, 0x2d, 0xc8, 0x24, 0xf4, 0x3d, 0x33, 0xb8,
+ 0xcf, 0xc3, 0xa5, 0x13, 0xed, 0x73, 0x41, 0x8d, 0x46, 0xfb, 0x5c, 0x54, 0x75, 0x19, 0xda, 0x3d,
+ 0x99, 0xa2, 0x84, 0xde, 0x3d, 0x45, 0x45, 0x18, 0xbd, 0x7b, 0x0a, 0x2b, 0x1a, 0xc9, 0xc0, 0xfc,
+ 0x1f, 0x4c, 0x6e, 0x45, 0xde, 0x19, 0xba, 0x15, 0xf7, 0xd2, 0x25, 0x0d, 0x73, 0x36, 0x4d, 0xcc,
+ 0xf6, 0xde, 0x81, 0xca, 0x00, 0xe4, 0x47, 0x73, 0x03, 0xe1, 0xa1, 0x52, 0x85, 0xd9, 0xcc, 0x32,
+ 0xb2, 0x9a, 0x5e, 0xc3, 0xf5, 0x14, 0x54, 0x8f, 0x16, 0x62, 0xdb, 0x39, 0xb5, 0x02, 0x73, 0xb1,
+ 0x80, 0x9b, 0x8d, 0xe2, 0x3e, 0x80, 0xc6, 0xd2, 0xf5, 0xcc, 0x67, 0x90, 0x7e, 0x3d, 0xf3, 0x39,
+ 0xd0, 0x7b, 0x7a, 0x9b, 0x65, 0x71, 0x71, 0xbd, 0xcd, 0x0a, 0x11, 0x7a, 0xbd, 0xcd, 0x8a, 0x61,
+ 0xf5, 0xa4, 0xdf, 0xc2, 0xce, 0x30, 0xa4, 0x9d, 0xb4, 0x53, 0x00, 0xae, 0x27, 0xed, 0x14, 0x21,
+ 0xe2, 0x49, 0x3b, 0xfd, 0x6c, 0xa1, 0x57, 0x61, 0xd2, 0xe8, 0x71, 0xd1, 0x0e, 0x4b, 0x83, 0xe3,
+ 0xe6, 0xbb, 0x3f, 0x2a, 0x97, 0x0d, 0xe3, 0x2b, 0xa8, 0x27, 0xc1, 0x69, 0x74, 0x37, 0xad, 0x23,
+ 0x85, 0xee, 0x99, 0x0b, 0xf9, 0x4c, 0xa5, 0xb5, 0xf2, 0xc3, 0xf7, 0x4f, 0x26, 0x2b, 0x46, 0xc3,
+ 0x78, 0x66, 0xa0, 0x5f, 0x19, 0x60, 0x16, 0x03, 0x78, 0xe8, 0xbd, 0x51, 0x9e, 0xa6, 0x6d, 0xbe,
+ 0xff, 0x36, 0xa2, 0x99, 0x71, 0x3d, 0x31, 0xd0, 0x0b, 0xa8, 0xc6, 0xf8, 0x31, 0x6a, 0x16, 0xa1,
+ 0xdf, 0xe6, 0x7c, 0x0e, 0x27, 0x1b, 0xa6, 0x63, 0xa8, 0x27, 0x81, 0x61, 0x1d, 0xa6, 0x1c, 0x34,
+ 0x5a, 0x87, 0x29, 0x17, 0x4b, 0x1e, 0x3a, 0xc2, 0x35, 0xea, 0x98, 0x38, 0xc2, 0x33, 0xa0, 0x66,
+ 0xe2, 0x08, 0xcf, 0xc2, 0x94, 0xc9, 0x65, 0x84, 0x45, 0x0d, 0x3f, 0x8d, 0x19, 0xa2, 0x64, 0x29,
+ 0x3d, 0x17, 0x9e, 0xd4, 0x87, 0x55, 0x21, 0xe0, 0x98, 0x30, 0xf2, 0xcc, 0xe0, 0x67, 0x62, 0x06,
+ 0x0d, 0xd4, 0x66, 0x8a, 0x80, 0x47, 0x6d, 0xa6, 0x10, 0x4a, 0x4c, 0x8e, 0x65, 0x13, 0xca, 0xea,
+ 0x3f, 0x1b, 0x74, 0x27, 0xee, 0x98, 0xfa, 0x7d, 0xc7, 0x9c, 0xcb, 0xd0, 0xb3, 0x51, 0x3e, 0x82,
+ 0x5a, 0x02, 0x36, 0x44, 0xc9, 0x9b, 0x65, 0x08, 0x0e, 0xd4, 0x51, 0xce, 0xc1, 0x19, 0xd3, 0x01,
+ 0xf8, 0x35, 0x7f, 0xa4, 0x8f, 0x40, 0xf3, 0xd0, 0x07, 0xa3, 0xd6, 0xed, 0xb0, 0xdd, 0x0f, 0xdf,
+ 0x4e, 0x38, 0x3b, 0xb6, 0xcf, 0xe1, 0x7a, 0x0a, 0xa2, 0xd2, 0xc7, 0x75, 0x1e, 0x82, 0xa8, 0x8f,
+ 0xeb, 0x5c, 0x5c, 0x2b, 0x3d, 0xc2, 0x10, 0x66, 0xf3, 0x10, 0x06, 0xf4, 0x50, 0x6f, 0x98, 0x42,
+ 0x94, 0xc4, 0x7c, 0x34, 0x5a, 0x28, 0xcf, 0x1e, 0x86, 0x99, 0x0c, 0x56, 0xa3, 0x97, 0x54, 0x11,
+ 0x7c, 0xa4, 0x97, 0x54, 0x21, 0xd0, 0x93, 0x36, 0xd3, 0x01, 0x94, 0xad, 0xb2, 0xa0, 0xc4, 0x53,
+ 0xb7, 0xa0, 0xcc, 0xa3, 0xcf, 0xf3, 0x11, 0x45, 0x9a, 0xd4, 0x01, 0x84, 0x61, 0x26, 0x53, 0x61,
+ 0xd1, 0x03, 0x2a, 0x2a, 0xe6, 0xe8, 0x01, 0x15, 0x96, 0x67, 0xd2, 0x03, 0xda, 0x81, 0xca, 0x00,
+ 0xc3, 0xd0, 0x77, 0xff, 0x10, 0x3e, 0xa3, 0xef, 0xfe, 0x0c, 0xdc, 0x91, 0x58, 0x4c, 0x5f, 0xc0,
+ 0xcd, 0xa1, 0xa4, 0x1e, 0xdd, 0x4b, 0x3d, 0x62, 0x32, 0xe8, 0x83, 0xb9, 0x54, 0xc8, 0xcf, 0xaa,
+ 0xa7, 0x70, 0x27, 0x3f, 0x87, 0x47, 0xef, 0x24, 0x96, 0x65, 0x31, 0x70, 0x60, 0x3e, 0xfe, 0x31,
+ 0xb1, 0xec, 0x11, 0xf2, 0x1a, 0xae, 0xa7, 0xb2, 0x51, 0xbd, 0x3f, 0xf2, 0x70, 0x01, 0xbd, 0x3f,
+ 0xf2, 0x33, 0xf3, 0xc4, 0x60, 0xc8, 0x50, 0xf6, 0x3e, 0x48, 0x73, 0xd1, 0xa3, 0x5c, 0x15, 0x43,
+ 0x29, 0xbc, 0xf9, 0xce, 0x8f, 0x48, 0xe5, 0xbe, 0xcd, 0x87, 0xf3, 0xdc, 0x64, 0x96, 0x98, 0x9b,
+ 0x50, 0x27, 0xb3, 0xc4, 0x82, 0x14, 0x79, 0xd8, 0x42, 0x3a, 0x73, 0x4d, 0x5a, 0xc8, 0xcd, 0xa3,
+ 0x93, 0x16, 0xf2, 0x93, 0xde, 0x84, 0x85, 0xb5, 0x67, 0x6f, 0xb8, 0x74, 0xe0, 0x9e, 0x2c, 0x7b,
+ 0xa4, 0xfb, 0x54, 0x7e, 0x7e, 0x44, 0xe8, 0xe9, 0x53, 0xa9, 0xe3, 0xa9, 0xf8, 0x49, 0xf7, 0xe9,
+ 0x29, 0x51, 0xed, 0xde, 0xc9, 0xc9, 0xb4, 0x20, 0x3d, 0xff, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0x76, 0x10, 0xee, 0x2b, 0xe9, 0x2b, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -4144,7 +4053,6 @@ type RepositoryServiceClient interface {
CreateRepositoryFromURL(ctx context.Context, in *CreateRepositoryFromURLRequest, opts ...grpc.CallOption) (*CreateRepositoryFromURLResponse, error)
CreateBundle(ctx context.Context, in *CreateBundleRequest, opts ...grpc.CallOption) (RepositoryService_CreateBundleClient, error)
CreateRepositoryFromBundle(ctx context.Context, opts ...grpc.CallOption) (RepositoryService_CreateRepositoryFromBundleClient, error)
- WriteConfig(ctx context.Context, in *WriteConfigRequest, opts ...grpc.CallOption) (*WriteConfigResponse, error)
SetConfig(ctx context.Context, in *SetConfigRequest, opts ...grpc.CallOption) (*SetConfigResponse, error)
DeleteConfig(ctx context.Context, in *DeleteConfigRequest, opts ...grpc.CallOption) (*DeleteConfigResponse, error)
FindLicense(ctx context.Context, in *FindLicenseRequest, opts ...grpc.CallOption) (*FindLicenseResponse, error)
@@ -4426,15 +4334,6 @@ func (x *repositoryServiceCreateRepositoryFromBundleClient) CloseAndRecv() (*Cre
return m, nil
}
-func (c *repositoryServiceClient) WriteConfig(ctx context.Context, in *WriteConfigRequest, opts ...grpc.CallOption) (*WriteConfigResponse, error) {
- out := new(WriteConfigResponse)
- err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/WriteConfig", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
func (c *repositoryServiceClient) SetConfig(ctx context.Context, in *SetConfigRequest, opts ...grpc.CallOption) (*SetConfigResponse, error) {
out := new(SetConfigResponse)
err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/SetConfig", in, out, opts...)
@@ -4800,7 +4699,6 @@ type RepositoryServiceServer interface {
CreateRepositoryFromURL(context.Context, *CreateRepositoryFromURLRequest) (*CreateRepositoryFromURLResponse, error)
CreateBundle(*CreateBundleRequest, RepositoryService_CreateBundleServer) error
CreateRepositoryFromBundle(RepositoryService_CreateRepositoryFromBundleServer) error
- WriteConfig(context.Context, *WriteConfigRequest) (*WriteConfigResponse, error)
SetConfig(context.Context, *SetConfigRequest) (*SetConfigResponse, error)
DeleteConfig(context.Context, *DeleteConfigRequest) (*DeleteConfigResponse, error)
FindLicense(context.Context, *FindLicenseRequest) (*FindLicenseResponse, error)
@@ -4887,9 +4785,6 @@ func (*UnimplementedRepositoryServiceServer) CreateBundle(req *CreateBundleReque
func (*UnimplementedRepositoryServiceServer) CreateRepositoryFromBundle(srv RepositoryService_CreateRepositoryFromBundleServer) error {
return status.Errorf(codes.Unimplemented, "method CreateRepositoryFromBundle not implemented")
}
-func (*UnimplementedRepositoryServiceServer) WriteConfig(ctx context.Context, req *WriteConfigRequest) (*WriteConfigResponse, error) {
- return nil, status.Errorf(codes.Unimplemented, "method WriteConfig not implemented")
-}
func (*UnimplementedRepositoryServiceServer) SetConfig(ctx context.Context, req *SetConfigRequest) (*SetConfigResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetConfig not implemented")
}
@@ -5329,24 +5224,6 @@ func (x *repositoryServiceCreateRepositoryFromBundleServer) Recv() (*CreateRepos
return m, nil
}
-func _RepositoryService_WriteConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(WriteConfigRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(RepositoryServiceServer).WriteConfig(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.RepositoryService/WriteConfig",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(RepositoryServiceServer).WriteConfig(ctx, req.(*WriteConfigRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
func _RepositoryService_SetConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetConfigRequest)
if err := dec(in); err != nil {
@@ -5806,10 +5683,6 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
Handler: _RepositoryService_CreateRepositoryFromURL_Handler,
},
{
- MethodName: "WriteConfig",
- Handler: _RepositoryService_WriteConfig_Handler,
- },
- {
MethodName: "SetConfig",
Handler: _RepositoryService_SetConfig_Handler,
},
diff --git a/proto/repository-service.proto b/proto/repository-service.proto
index a1aadad3f..7551ed1aa 100644
--- a/proto/repository-service.proto
+++ b/proto/repository-service.proto
@@ -128,12 +128,6 @@ service RepositoryService {
target_repository_field: "1"
};
}
- rpc WriteConfig(WriteConfigRequest) returns (WriteConfigResponse) {
- option (op_type) = {
- op: MUTATOR
- target_repository_field: "1"
- };
- }
rpc SetConfig(SetConfigRequest) returns (SetConfigResponse) {
option (op_type) = {
op: MUTATOR
@@ -442,15 +436,6 @@ message CreateBundleResponse {
bytes data = 1;
}
-message WriteConfigRequest {
- Repository repository = 1;
- string full_path = 2;
-}
-
-message WriteConfigResponse {
- bytes error = 1;
-}
-
message SetConfigRequest {
Repository repository = 1;
message Entry {
diff --git a/ruby/lib/gitaly_server/repository_service.rb b/ruby/lib/gitaly_server/repository_service.rb
index a3e70d485..f2b718946 100644
--- a/ruby/lib/gitaly_server/repository_service.rb
+++ b/ruby/lib/gitaly_server/repository_service.rb
@@ -48,16 +48,6 @@ module GitalyServer
repository&.remove_remote(remote_name)
end
- def write_config(request, call)
- repo = Gitlab::Git::Repository.from_gitaly(request.repository, call)
-
- repo.write_config(full_path: request.full_path)
-
- Gitaly::WriteConfigResponse.new
- rescue Rugged::Error => ex
- Gitaly::WriteConfigResponse.new(error: ex.message.b)
- end
-
def set_config(request, call)
repo = Gitlab::Git::Repository.from_gitaly(request.repository, call)
diff --git a/ruby/lib/gitlab/git/repository.rb b/ruby/lib/gitlab/git/repository.rb
index a8c1efe5d..e269ea72c 100644
--- a/ruby/lib/gitlab/git/repository.rb
+++ b/ruby/lib/gitlab/git/repository.rb
@@ -213,14 +213,6 @@ module Gitlab
end
end
- def write_config(full_path:)
- return unless full_path.present?
-
- raise NoRepository, 'repository does not exist' unless exists?
-
- rugged.config['gitlab.fullpath'] = full_path
- end
-
def ancestor?(from, to)
return false if from.nil? || to.nil?
diff --git a/ruby/proto/gitaly/repository-service_pb.rb b/ruby/proto/gitaly/repository-service_pb.rb
index ff1d34735..80a97ea8e 100644
--- a/ruby/proto/gitaly/repository-service_pb.rb
+++ b/ruby/proto/gitaly/repository-service_pb.rb
@@ -148,13 +148,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
add_message "gitaly.CreateBundleResponse" do
optional :data, :bytes, 1
end
- add_message "gitaly.WriteConfigRequest" do
- optional :repository, :message, 1, "gitaly.Repository"
- optional :full_path, :string, 2
- end
- add_message "gitaly.WriteConfigResponse" do
- optional :error, :bytes, 1
- end
add_message "gitaly.SetConfigRequest" do
optional :repository, :message, 1, "gitaly.Repository"
repeated :entries, :message, 2, "gitaly.SetConfigRequest.Entry"
@@ -367,8 +360,6 @@ module Gitaly
CreateRepositoryFromURLResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromURLResponse").msgclass
CreateBundleRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleRequest").msgclass
CreateBundleResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleResponse").msgclass
- WriteConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteConfigRequest").msgclass
- WriteConfigResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteConfigResponse").msgclass
SetConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest").msgclass
SetConfigRequest::Entry = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest.Entry").msgclass
SetConfigResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigResponse").msgclass
diff --git a/ruby/proto/gitaly/repository-service_services_pb.rb b/ruby/proto/gitaly/repository-service_services_pb.rb
index 0963f51b8..5e3efa7c2 100644
--- a/ruby/proto/gitaly/repository-service_services_pb.rb
+++ b/ruby/proto/gitaly/repository-service_services_pb.rb
@@ -34,7 +34,6 @@ module Gitaly
rpc :CreateRepositoryFromURL, CreateRepositoryFromURLRequest, CreateRepositoryFromURLResponse
rpc :CreateBundle, CreateBundleRequest, stream(CreateBundleResponse)
rpc :CreateRepositoryFromBundle, stream(CreateRepositoryFromBundleRequest), CreateRepositoryFromBundleResponse
- rpc :WriteConfig, WriteConfigRequest, WriteConfigResponse
rpc :SetConfig, SetConfigRequest, SetConfigResponse
rpc :DeleteConfig, DeleteConfigRequest, DeleteConfigResponse
rpc :FindLicense, FindLicenseRequest, FindLicenseResponse
diff --git a/ruby/spec/lib/gitlab/git/repository_spec.rb b/ruby/spec/lib/gitlab/git/repository_spec.rb
index 595111814..1b5828877 100644
--- a/ruby/spec/lib/gitlab/git/repository_spec.rb
+++ b/ruby/spec/lib/gitlab/git/repository_spec.rb
@@ -436,34 +436,6 @@ describe Gitlab::Git::Repository do # rubocop:disable Metrics/BlockLength
end
end
- describe '#write_config' do
- before do
- repository_rugged.config["gitlab.fullpath"] = repository_path
- end
-
- context 'is given a path' do
- it 'writes it to disk' do
- repository.write_config(full_path: "not-the/real-path.git")
-
- config = File.read(File.join(repository_path, "config"))
-
- expect(config).to include("[gitlab]")
- expect(config).to include("fullpath = not-the/real-path.git")
- end
- end
-
- context 'it is given an empty path' do
- it 'does not write it to disk' do
- repository.write_config(full_path: "")
-
- config = File.read(File.join(repository_path, "config"))
-
- expect(config).to include("[gitlab]")
- expect(config).to include("fullpath = #{repository_path}")
- end
- end
- end
-
describe '#merge' do
let(:repository) { mutable_repository }
let(:source_sha) { '913c66a37b4a45b9769037c55c2d238bd0942d2e' }