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:
authorKim Carlbäcker <kim.carlbacker@gmail.com>2018-01-30 00:31:25 +0300
committerKim Carlbäcker <kim.carlbacker@gmail.com>2018-01-30 00:31:25 +0300
commit5e7f20e494e7a68733017455187b7d4099900e78 (patch)
treecd73d71ea73c32a011a8ab0f7aa938a41b80a9ab
parent8db97acb3126deb70db27d2405d9f5c482f48c5c (diff)
parentc9ff6fc1d25bf55de0825eb1190a8a929887c154 (diff)
Merge branch 'feature/implement-selective-ref-deletion' into 'master'
Add support for Refs field in DeleteRefs RPC Closes #968 See merge request gitlab-org/gitaly!565
-rw-r--r--CHANGELOG.md4
-rw-r--r--internal/service/ref/delete_refs.go36
-rw-r--r--internal/service/ref/delete_refs_test.go147
-rw-r--r--internal/testhelper/testhelper.go4
-rw-r--r--ruby/Gemfile2
-rw-r--r--ruby/Gemfile.lock4
-rw-r--r--ruby/lib/gitaly_server/ref_service.rb12
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION2
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go195
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/ref.pb.go181
-rw-r--r--vendor/vendor.json10
11 files changed, 360 insertions, 237 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4ffb65999..bb8ea020c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
UNRELEASED
+- Add support for Refs field in DeleteRefs RPC
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/565
- Wait between ruby worker removal from pool and graceful shutdown
https://gitlab.com/gitlab-org/gitaly/merge_requests/567
- Register the ServerService
@@ -10,7 +12,7 @@ UNRELEASED
https://gitlab.com/gitlab-org/gitaly/merge_requests/571
- Vendor gitlab_git at 4376be84ce18cde22febc50
https://gitlab.com/gitlab-org/gitaly/merge_requests/570
-
+
v0.75.0
- Implement WikiGetFormattedData RPC
diff --git a/internal/service/ref/delete_refs.go b/internal/service/ref/delete_refs.go
index 6482e1220..d9e88a55c 100644
--- a/internal/service/ref/delete_refs.go
+++ b/internal/service/ref/delete_refs.go
@@ -1,6 +1,8 @@
package ref
import (
+ "fmt"
+
pb "gitlab.com/gitlab-org/gitaly-proto/go"
"gitlab.com/gitlab-org/gitaly/internal/rubyserver"
"golang.org/x/net/context"
@@ -9,14 +11,8 @@ import (
)
func (s *server) DeleteRefs(ctx context.Context, in *pb.DeleteRefsRequest) (*pb.DeleteRefsResponse, error) {
- if len(in.ExceptWithPrefix) == 0 { // You can't delete all refs
- return nil, status.Errorf(codes.InvalidArgument, "DeleteRefs: empty ExceptWithPrefix")
- }
-
- for _, prefix := range in.ExceptWithPrefix {
- if len(prefix) == 0 {
- return nil, status.Errorf(codes.InvalidArgument, "DeleteRefs: empty prefix for exclussion")
- }
+ if err := validateDeleteRefRequest(in); err != nil {
+ return nil, status.Errorf(codes.InvalidArgument, "DeleteRefs: %v", err)
}
client, err := s.RefServiceClient(ctx)
@@ -31,3 +27,27 @@ func (s *server) DeleteRefs(ctx context.Context, in *pb.DeleteRefsRequest) (*pb.
return client.DeleteRefs(clientCtx, in)
}
+
+func validateDeleteRefRequest(req *pb.DeleteRefsRequest) error {
+ if len(req.ExceptWithPrefix) > 0 && len(req.Refs) > 0 {
+ return fmt.Errorf("ExceptWithPrefix and Refs are mutually exclusive")
+ }
+
+ if len(req.ExceptWithPrefix) == 0 && len(req.Refs) == 0 { // You can't delete all refs
+ return fmt.Errorf("empty ExceptWithPrefix and Refs")
+ }
+
+ for _, prefix := range req.ExceptWithPrefix {
+ if len(prefix) == 0 {
+ return fmt.Errorf("empty prefix for exclusion")
+ }
+ }
+
+ for _, ref := range req.Refs {
+ if len(ref) == 0 {
+ return fmt.Errorf("empty ref")
+ }
+ }
+
+ return nil
+}
diff --git a/internal/service/ref/delete_refs_test.go b/internal/service/ref/delete_refs_test.go
index 2b817a012..05c74d3ef 100644
--- a/internal/service/ref/delete_refs_test.go
+++ b/internal/service/ref/delete_refs_test.go
@@ -18,32 +18,74 @@ func TestSuccessfulDeleteRefs(t *testing.T) {
client, conn := newRefServiceClient(t, serverSocketPath)
defer conn.Close()
- repo, repoPath, cleanupFn := testhelper.NewTestRepo(t)
- defer cleanupFn()
+ testCases := []struct {
+ desc string
+ request *pb.DeleteRefsRequest
+ }{
+ {
+ desc: "delete all except refs with certain prefixes",
+ request: &pb.DeleteRefsRequest{
+ ExceptWithPrefix: [][]byte{[]byte("refs/keep"), []byte("refs/also-keep"), []byte("refs/heads/")},
+ },
+ },
+ {
+ desc: "delete certain refs",
+ request: &pb.DeleteRefsRequest{
+ Refs: [][]byte{[]byte("refs/delete/a"), []byte("refs/also-delete/b")},
+ },
+ },
+ }
- testhelper.MustRunCommand(t, nil, "git", "-C", repoPath, "update-ref", "refs/delete/a", "b83d6e391c22777fca1ed3012fce84f633d7fed0")
- testhelper.MustRunCommand(t, nil, "git", "-C", repoPath, "update-ref", "refs/also-delete/b", "1b12f15a11fc6e62177bef08f47bc7b5ce50b141")
- testhelper.MustRunCommand(t, nil, "git", "-C", repoPath, "update-ref", "refs/keep/c", "498214de67004b1da3d820901307bed2a68a8ef6")
- testhelper.MustRunCommand(t, nil, "git", "-C", repoPath, "update-ref", "refs/also-keep/d", "b83d6e391c22777fca1ed3012fce84f633d7fed0")
+ for _, testCase := range testCases {
+ t.Run(testCase.desc, func(t *testing.T) {
+ repo, repoPath, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
- rpcRequest := &pb.DeleteRefsRequest{
- Repository: repo,
- ExceptWithPrefix: [][]byte{[]byte("refs/keep"), []byte("refs/also-keep"), []byte("refs/heads/")},
+ testhelper.MustRunCommand(t, nil, "git", "-C", repoPath, "update-ref", "refs/delete/a", "b83d6e391c22777fca1ed3012fce84f633d7fed0")
+ testhelper.MustRunCommand(t, nil, "git", "-C", repoPath, "update-ref", "refs/also-delete/b", "1b12f15a11fc6e62177bef08f47bc7b5ce50b141")
+ testhelper.MustRunCommand(t, nil, "git", "-C", repoPath, "update-ref", "refs/keep/c", "498214de67004b1da3d820901307bed2a68a8ef6")
+ testhelper.MustRunCommand(t, nil, "git", "-C", repoPath, "update-ref", "refs/also-keep/d", "b83d6e391c22777fca1ed3012fce84f633d7fed0")
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ testCase.request.Repository = repo
+ _, err := client.DeleteRefs(ctx, testCase.request)
+ require.NoError(t, err)
+
+ refs := testhelper.GetRepositoryRefs(t, repoPath)
+
+ require.NotContains(t, refs, "refs/delete/a")
+ require.NotContains(t, refs, "refs/also-delete/b")
+ require.Contains(t, refs, "refs/keep/c")
+ require.Contains(t, refs, "refs/also-keep/d")
+ require.Contains(t, refs, "refs/heads/master")
+ })
}
+}
+
+func TestFailedDeleteRefsRequestDueToGitError(t *testing.T) {
+ server, serverSocketPath := runRefServiceServer(t)
+ defer server.Stop()
+
+ client, conn := newRefServiceClient(t, serverSocketPath)
+ defer conn.Close()
ctx, cancel := testhelper.Context()
defer cancel()
- _, err := client.DeleteRefs(ctx, rpcRequest)
- require.NoError(t, err)
+ repo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
- refs := testhelper.GetRepositoryRefs(t, repoPath)
+ request := &pb.DeleteRefsRequest{
+ Repository: repo,
+ Refs: [][]byte{[]byte(`refs\tails\invalid-ref-format`)},
+ }
+
+ response, err := client.DeleteRefs(ctx, request)
+ require.NoError(t, err)
- require.NotContains(t, refs, "refs/delete/a")
- require.NotContains(t, refs, "refs/also-delete/b")
- require.Contains(t, refs, "refs/keep/c")
- require.Contains(t, refs, "refs/also-keep/d")
- require.Contains(t, refs, "refs/heads/master")
+ require.Contains(t, response.GitError, "Could not delete refs")
}
func TestFailedDeleteRefsDueToValidation(t *testing.T) {
@@ -57,34 +99,59 @@ func TestFailedDeleteRefsDueToValidation(t *testing.T) {
defer cleanupFn()
testCases := []struct {
- desc string
- repo *pb.Repository
- prefixes [][]byte
- code codes.Code
+ desc string
+ request *pb.DeleteRefsRequest
+ // repo *pb.Repository
+ // prefixes [][]byte
+ code codes.Code
}{
{
- desc: "Invalid repository",
- repo: &pb.Repository{StorageName: "fake", RelativePath: "path"},
- prefixes: [][]byte{[]byte("exclude-this")},
- code: codes.InvalidArgument,
+ desc: "Invalid repository",
+ request: &pb.DeleteRefsRequest{
+ Repository: &pb.Repository{StorageName: "fake", RelativePath: "path"},
+ ExceptWithPrefix: [][]byte{[]byte("exclude-this")},
+ },
+ code: codes.InvalidArgument,
+ },
+ {
+ desc: "Repository is nil",
+ request: &pb.DeleteRefsRequest{
+ Repository: nil,
+ ExceptWithPrefix: [][]byte{[]byte("exclude-this")},
+ },
+ code: codes.InvalidArgument,
+ },
+ {
+ desc: "No prefixes nor refs",
+ request: &pb.DeleteRefsRequest{
+ Repository: testRepo,
+ },
+ code: codes.InvalidArgument,
},
{
- desc: "Repository is nil",
- repo: nil,
- prefixes: [][]byte{[]byte("exclude-this")},
- code: codes.InvalidArgument,
+ desc: "prefixes with refs",
+ request: &pb.DeleteRefsRequest{
+ Repository: testRepo,
+ ExceptWithPrefix: [][]byte{[]byte("exclude-this")},
+ Refs: [][]byte{[]byte("delete-this")},
+ },
+ code: codes.InvalidArgument,
},
{
- desc: "No prefixes",
- repo: testRepo,
- prefixes: [][]byte{},
- code: codes.InvalidArgument,
+ desc: "Empty prefix",
+ request: &pb.DeleteRefsRequest{
+ Repository: testRepo,
+ ExceptWithPrefix: [][]byte{[]byte("exclude-this"), []byte{}},
+ },
+ code: codes.InvalidArgument,
},
{
- desc: "Empty prefix",
- repo: testRepo,
- prefixes: [][]byte{[]byte("exclude-this"), []byte{}},
- code: codes.InvalidArgument,
+ desc: "Empty ref",
+ request: &pb.DeleteRefsRequest{
+ Repository: testRepo,
+ Refs: [][]byte{[]byte("delete-this"), []byte{}},
+ },
+ code: codes.InvalidArgument,
},
}
@@ -93,11 +160,7 @@ func TestFailedDeleteRefsDueToValidation(t *testing.T) {
ctx, cancel := testhelper.Context()
defer cancel()
- rpcRequest := &pb.DeleteRefsRequest{
- Repository: tc.repo,
- ExceptWithPrefix: tc.prefixes,
- }
- _, err := client.DeleteRefs(ctx, rpcRequest)
+ _, err := client.DeleteRefs(ctx, tc.request)
testhelper.AssertGrpcError(t, err, tc.code, "")
})
}
diff --git a/internal/testhelper/testhelper.go b/internal/testhelper/testhelper.go
index 0c5eef0f5..52cea227c 100644
--- a/internal/testhelper/testhelper.go
+++ b/internal/testhelper/testhelper.go
@@ -331,7 +331,9 @@ func Context() (context.Context, func()) {
}
func createRepo(t *testing.T, storagePath string) (repo *pb.Repository, repoPath, relativePath string) {
- repoPath, err := ioutil.TempDir(storagePath, t.Name())
+ normalizedPrefix := strings.Replace(t.Name(), "/", "-", -1) //TempDir doesn't like a prefix containing slashes
+
+ repoPath, err := ioutil.TempDir(storagePath, normalizedPrefix)
require.NoError(t, err)
relativePath, err = filepath.Rel(storagePath, repoPath)
require.NoError(t, err)
diff --git a/ruby/Gemfile b/ruby/Gemfile
index 85665bf55..ef45a1b16 100644
--- a/ruby/Gemfile
+++ b/ruby/Gemfile
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
gem 'github-linguist', '~> 4.7.0', require: 'linguist'
gem 'gitlab-markup', '~> 1.6.2'
-gem 'gitaly-proto', '~> 0.82.0', require: 'gitaly'
+gem 'gitaly-proto', '~> 0.83.0', require: 'gitaly'
gem 'activesupport'
gem 'rdoc', '~> 4.2'
gem 'gollum-lib', '~> 4.2', require: false
diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock
index 392f68bfa..c6d57142d 100644
--- a/ruby/Gemfile.lock
+++ b/ruby/Gemfile.lock
@@ -17,7 +17,7 @@ GEM
multipart-post (>= 1.2, < 3)
gemojione (3.3.0)
json
- gitaly-proto (0.82.0)
+ gitaly-proto (0.83.0)
google-protobuf (~> 3.1)
grpc (~> 1.0)
github-linguist (4.7.6)
@@ -137,7 +137,7 @@ PLATFORMS
DEPENDENCIES
activesupport
- gitaly-proto (~> 0.82.0)
+ gitaly-proto (~> 0.83.0)
github-linguist (~> 4.7.0)
gitlab-markup (~> 1.6.2)
gitlab-styles (~> 2.0.0)
diff --git a/ruby/lib/gitaly_server/ref_service.rb b/ruby/lib/gitaly_server/ref_service.rb
index 799c55664..7e2f05a43 100644
--- a/ruby/lib/gitaly_server/ref_service.rb
+++ b/ruby/lib/gitaly_server/ref_service.rb
@@ -96,9 +96,17 @@ module GitalyServer
bridge_exceptions do
repo = Gitlab::Git::Repository.from_gitaly(request.repository, call)
- repo.delete_all_refs_except(request.except_with_prefix)
+ begin
+ if request.refs.any?
+ repo.delete_refs(*request.refs)
+ else
+ repo.delete_all_refs_except(request.except_with_prefix)
+ end
- Gitaly::DeleteRefsResponse.new
+ Gitaly::DeleteRefsResponse.new
+ rescue Gitlab::Git::Repository::GitError => e
+ Gitaly::DeleteRefsResponse.new(git_error: e.message)
+ end
end
end
end
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
index 92fc430ae..83dcd12cb 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
@@ -1 +1 @@
-0.82.0
+0.83.0
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go
index 05b691d1e..558ad8e08 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go
@@ -356,7 +356,8 @@ type UserMergeBranchResponse struct {
CommitId string `protobuf:"bytes,1,opt,name=commit_id,json=commitId" json:"commit_id,omitempty"`
// Second message
// If set, the merge has been applied to the branch.
- BranchUpdate *OperationBranchUpdate `protobuf:"bytes,3,opt,name=branch_update,json=branchUpdate" json:"branch_update,omitempty"`
+ BranchUpdate *OperationBranchUpdate `protobuf:"bytes,3,opt,name=branch_update,json=branchUpdate" json:"branch_update,omitempty"`
+ PreReceiveError string `protobuf:"bytes,4,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
}
func (m *UserMergeBranchResponse) Reset() { *m = UserMergeBranchResponse{} }
@@ -378,6 +379,13 @@ func (m *UserMergeBranchResponse) GetBranchUpdate() *OperationBranchUpdate {
return nil
}
+func (m *UserMergeBranchResponse) GetPreReceiveError() string {
+ if m != nil {
+ return m.PreReceiveError
+ }
+ return ""
+}
+
type OperationBranchUpdate struct {
// If this string is non-empty the branch has been updated.
CommitId string `protobuf:"bytes,1,opt,name=commit_id,json=commitId" json:"commit_id,omitempty"`
@@ -1761,96 +1769,97 @@ var _OperationService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("operations.proto", fileDescriptor7) }
var fileDescriptor7 = []byte{
- // 1456 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0x4f, 0x6f, 0x1b, 0x45,
- 0x14, 0xf7, 0xda, 0xe9, 0xda, 0x79, 0x71, 0x1c, 0x67, 0xfa, 0xcf, 0x75, 0x9b, 0x26, 0xdd, 0xb6,
- 0x50, 0x2a, 0x14, 0xa1, 0x80, 0xe0, 0x54, 0x50, 0x93, 0x38, 0xb4, 0x85, 0xb6, 0x61, 0x9b, 0x16,
- 0x6e, 0xab, 0xa9, 0x3d, 0xd8, 0x2b, 0x6c, 0xef, 0x76, 0x76, 0x13, 0x35, 0x08, 0x21, 0x2e, 0xc0,
- 0x81, 0x0b, 0x27, 0x0e, 0x9c, 0x40, 0xdc, 0xb8, 0x71, 0xe1, 0xc0, 0x81, 0x0f, 0xc0, 0xb5, 0x07,
- 0xbe, 0x0e, 0x9a, 0x79, 0x6f, 0xed, 0xd9, 0xf5, 0x3a, 0x4a, 0xa0, 0x11, 0x15, 0xe2, 0xb6, 0xfb,
- 0xde, 0x9b, 0x37, 0xef, 0xfd, 0xde, 0xbf, 0x99, 0x81, 0x7a, 0x10, 0x0a, 0xc9, 0x63, 0x3f, 0x18,
- 0x46, 0xab, 0xa1, 0x0c, 0xe2, 0x80, 0xd9, 0x5d, 0x3f, 0xe6, 0xfd, 0xfd, 0x66, 0x35, 0xea, 0x71,
- 0x29, 0x3a, 0x48, 0x75, 0x7e, 0xb1, 0xe0, 0xec, 0xc3, 0x48, 0xc8, 0x0d, 0x29, 0x78, 0x2c, 0xd6,
- 0x25, 0x1f, 0xb6, 0x7b, 0xae, 0x78, 0xb2, 0x2b, 0xa2, 0x98, 0xad, 0x01, 0x48, 0x11, 0x06, 0x91,
- 0x1f, 0x07, 0x72, 0xbf, 0x61, 0xad, 0x58, 0xd7, 0xe6, 0xd6, 0xd8, 0x2a, 0xaa, 0x59, 0x75, 0x47,
- 0x1c, 0xd7, 0x90, 0x62, 0xcb, 0x30, 0xf7, 0x58, 0x2b, 0xf1, 0x86, 0x7c, 0x20, 0x1a, 0xc5, 0x15,
- 0xeb, 0x5a, 0xd5, 0x05, 0x24, 0xdd, 0xe3, 0x03, 0xc1, 0x56, 0x60, 0x66, 0x37, 0x12, 0xb2, 0x51,
- 0xd2, 0xea, 0xaa, 0x89, 0x3a, 0x65, 0x83, 0xab, 0x39, 0x4a, 0x45, 0x14, 0x73, 0x19, 0x7b, 0x61,
- 0xe0, 0x0f, 0xe3, 0xc6, 0x0c, 0xaa, 0xd0, 0xa4, 0x6d, 0x45, 0x71, 0x86, 0xd0, 0x98, 0x34, 0x39,
- 0x0a, 0x83, 0x61, 0x24, 0xd8, 0x4b, 0x60, 0xe3, 0x66, 0x64, 0x6f, 0x2d, 0xd9, 0x80, 0xe4, 0x88,
- 0xcb, 0xae, 0xc3, 0x62, 0x28, 0x85, 0x27, 0x45, 0x5b, 0xf8, 0x7b, 0xc2, 0x13, 0x52, 0x06, 0x52,
- 0x5b, 0x3b, 0xeb, 0x2e, 0x84, 0x52, 0xb8, 0x48, 0x6f, 0x29, 0xb2, 0xf3, 0x2d, 0x61, 0xb4, 0x29,
- 0xfa, 0xe2, 0xc5, 0xc0, 0xc8, 0xd9, 0x42, 0x08, 0xd2, 0x16, 0x11, 0x04, 0xb9, 0xae, 0x59, 0xf9,
- 0xae, 0x7d, 0x6d, 0xc1, 0xa9, 0xb1, 0xa2, 0x1d, 0xde, 0xfd, 0x27, 0x7e, 0x9d, 0x83, 0x4a, 0xcc,
- 0xbb, 0xa6, 0x53, 0xe5, 0x98, 0x77, 0x0f, 0xe9, 0xd1, 0x06, 0x9c, 0xce, 0x18, 0xf2, 0x37, 0xdc,
- 0xf9, 0x83, 0xdc, 0xc1, 0xd4, 0xf8, 0x17, 0xdd, 0x61, 0x2f, 0xc3, 0x42, 0xcc, 0x65, 0x57, 0xc4,
- 0x9e, 0x14, 0x7b, 0x7e, 0xe4, 0x07, 0x43, 0x4a, 0xe4, 0x1a, 0x92, 0x5d, 0xa2, 0xb2, 0x06, 0x94,
- 0x07, 0x22, 0x8a, 0x78, 0x57, 0x34, 0x4e, 0xe0, 0x26, 0xf4, 0xeb, 0x7c, 0x8a, 0x88, 0x18, 0xbe,
- 0x10, 0x22, 0x4b, 0x50, 0x8a, 0x79, 0x97, 0xbc, 0x98, 0x4b, 0x36, 0x57, 0x12, 0x8a, 0xce, 0xce,
- 0x80, 0x2d, 0x9e, 0xfa, 0x51, 0x1c, 0x69, 0xab, 0x2b, 0x2e, 0xfd, 0xe5, 0x03, 0x59, 0xca, 0x07,
- 0xf2, 0x99, 0x05, 0x67, 0xd4, 0xe6, 0x77, 0x85, 0xec, 0x3e, 0x87, 0x8c, 0x4f, 0xf0, 0x2a, 0x4e,
- 0xc5, 0xeb, 0x3c, 0xcc, 0xb6, 0x83, 0xc1, 0xc0, 0x8f, 0x3d, 0xbf, 0x43, 0x46, 0x55, 0x90, 0x70,
- 0xbb, 0xa3, 0x3c, 0xa2, 0xa2, 0x46, 0x0c, 0x93, 0x22, 0x9e, 0x8a, 0x1d, 0x3b, 0x05, 0x27, 0x78,
- 0x18, 0xf6, 0xf7, 0x1b, 0xb6, 0x86, 0x00, 0x7f, 0x9c, 0x2f, 0xa8, 0x90, 0x53, 0x5e, 0x11, 0xa8,
- 0x29, 0x03, 0xac, 0x8c, 0x01, 0xeb, 0x30, 0x4f, 0x15, 0xbb, 0x1b, 0x76, 0x78, 0x2c, 0x28, 0xf0,
- 0x4b, 0x89, 0x23, 0xf7, 0x93, 0x66, 0x8b, 0x4a, 0x1f, 0x6a, 0x21, 0xb7, 0xfa, 0xd8, 0xf8, 0xbb,
- 0x33, 0x53, 0x29, 0xd6, 0x4b, 0xce, 0xe7, 0x70, 0x3a, 0x57, 0xf8, 0xe0, 0xfd, 0x2f, 0x41, 0x55,
- 0xa1, 0xe9, 0xb5, 0x75, 0x2e, 0x74, 0x28, 0xb0, 0x73, 0x8a, 0x86, 0xe9, 0xd1, 0x61, 0x57, 0xa1,
- 0x46, 0x26, 0x26, 0x42, 0x25, 0x2d, 0x44, 0x86, 0x93, 0x98, 0xf3, 0x83, 0x05, 0x27, 0x15, 0x04,
- 0x5b, 0x5b, 0x2f, 0x6a, 0x54, 0x9d, 0xaf, 0xa8, 0x88, 0xc7, 0x26, 0x52, 0x88, 0x26, 0xa2, 0x60,
- 0x1d, 0x39, 0x0a, 0x47, 0xea, 0xfb, 0xbf, 0x17, 0xa9, 0x02, 0x7b, 0x42, 0xca, 0xfd, 0x6d, 0xbf,
- 0xfd, 0xc9, 0xf1, 0xa2, 0xf5, 0x0a, 0xd8, 0x08, 0x0e, 0xa5, 0xd7, 0x62, 0x22, 0xf3, 0xae, 0x1f,
- 0x6f, 0x68, 0x86, 0x4b, 0x02, 0xd9, 0x11, 0x32, 0x33, 0x31, 0x42, 0xa6, 0x97, 0xc6, 0x75, 0x58,
- 0xc4, 0xf1, 0x6a, 0x2a, 0xb0, 0xb5, 0xcc, 0x82, 0x66, 0xac, 0x8f, 0xb5, 0xdc, 0x80, 0x3a, 0xca,
- 0x1a, 0xde, 0x96, 0xa7, 0x7a, 0x8b, 0xcb, 0xc7, 0x04, 0xe7, 0x4f, 0xea, 0x22, 0x26, 0x80, 0xcf,
- 0x37, 0x96, 0x98, 0xeb, 0x5e, 0x2c, 0x45, 0x26, 0x96, 0xc8, 0xd8, 0x91, 0x02, 0x63, 0xa9, 0x2a,
- 0x88, 0x32, 0xd1, 0xec, 0x7b, 0x73, 0x48, 0x43, 0x91, 0xdc, 0xd4, 0x98, 0xc9, 0x4f, 0x8d, 0xdf,
- 0x8a, 0xb0, 0xa8, 0x23, 0x27, 0xf6, 0x84, 0x72, 0xf9, 0xff, 0xb4, 0x38, 0x42, 0x5a, 0x3c, 0xb3,
- 0x80, 0x99, 0xe0, 0xfd, 0x37, 0x52, 0xe2, 0xfb, 0x22, 0x9c, 0xd7, 0xc9, 0xae, 0xd7, 0x6f, 0xf9,
- 0x7d, 0x11, 0xdd, 0x6c, 0x2b, 0x73, 0x6f, 0x09, 0xde, 0x11, 0x92, 0x6d, 0x81, 0xcd, 0xf5, 0xbf,
- 0xf6, 0xab, 0xb6, 0xb6, 0x6a, 0x86, 0x7a, 0xca, 0xa2, 0x55, 0xfc, 0xd9, 0xd9, 0x0f, 0x85, 0x4b,
- 0xab, 0x55, 0x4f, 0xfd, 0xd8, 0xef, 0x0b, 0x2f, 0xe4, 0x71, 0x8f, 0xce, 0x25, 0x15, 0x45, 0xd8,
- 0xe6, 0x71, 0x8f, 0x5d, 0x86, 0xf9, 0x50, 0x1d, 0x38, 0x82, 0xdd, 0x08, 0x05, 0x4a, 0x5a, 0xa0,
- 0x9a, 0x10, 0xb5, 0x90, 0x1a, 0x15, 0x3c, 0x12, 0x6f, 0xbe, 0xe1, 0xb5, 0x83, 0x61, 0x2c, 0xe8,
- 0x8c, 0xad, 0x46, 0x85, 0xa6, 0x6e, 0x20, 0xd1, 0xb9, 0x03, 0x30, 0xde, 0x9e, 0x01, 0xd8, 0x1b,
- 0x6e, 0xeb, 0xe6, 0x4e, 0xab, 0x5e, 0x60, 0x35, 0x00, 0xfc, 0xf6, 0x36, 0x6f, 0xbb, 0x75, 0x4b,
- 0xf1, 0x1e, 0x6e, 0x6f, 0x2a, 0x5e, 0x91, 0x55, 0x60, 0xe6, 0xee, 0xfd, 0x47, 0xad, 0x7a, 0x49,
- 0x51, 0x37, 0x5b, 0xef, 0xb7, 0x76, 0x5a, 0xf5, 0x19, 0xe7, 0x3b, 0x8b, 0x5a, 0x69, 0xd6, 0x4f,
- 0x76, 0x03, 0xec, 0x9e, 0xf6, 0x95, 0xc2, 0x7d, 0xf9, 0x10, 0xb0, 0xdc, 0x2a, 0xb8, 0xb4, 0x88,
- 0x35, 0xa1, 0x9c, 0x38, 0xa1, 0xb1, 0xb8, 0x55, 0x70, 0x13, 0xc2, 0xba, 0x03, 0x2b, 0xaa, 0x80,
- 0x3c, 0x8a, 0xb2, 0x02, 0x29, 0xf2, 0x10, 0x45, 0x2f, 0xe4, 0xfb, 0xfd, 0x80, 0x77, 0x9c, 0x2f,
- 0x4b, 0x70, 0x21, 0xb3, 0x13, 0x55, 0x33, 0x85, 0xed, 0x78, 0x6a, 0x3a, 0x53, 0xa8, 0xa5, 0x89,
- 0x42, 0xbd, 0x0a, 0x35, 0x32, 0x3b, 0xa9, 0x57, 0x2c, 0xe6, 0x79, 0xa4, 0xde, 0xa5, 0xaa, 0x7d,
- 0x15, 0x18, 0x89, 0xf1, 0xdd, 0xb8, 0x17, 0x48, 0x54, 0x87, 0xa5, 0x5d, 0x47, 0xce, 0x4d, 0xcd,
- 0xd0, 0x4a, 0x57, 0xe1, 0x64, 0x5a, 0x5a, 0x0c, 0xb8, 0xdf, 0xa7, 0x2a, 0x5f, 0x34, 0xc5, 0x5b,
- 0x8a, 0x91, 0xdf, 0x13, 0xca, 0x87, 0xef, 0x09, 0x95, 0xc3, 0xf7, 0x84, 0x5f, 0x93, 0x51, 0x31,
- 0x11, 0x07, 0xf6, 0x76, 0x26, 0x43, 0xae, 0x4c, 0xc9, 0x90, 0x54, 0xdc, 0x8c, 0x14, 0x79, 0x6b,
- 0x54, 0x78, 0xc5, 0x74, 0x43, 0xc9, 0xcf, 0xb0, 0x42, 0x52, 0x69, 0xeb, 0x97, 0xe1, 0xd2, 0x64,
- 0xfe, 0x48, 0xdc, 0x65, 0x94, 0x40, 0x3f, 0x27, 0x17, 0x68, 0xd3, 0x90, 0xe7, 0xd8, 0xd1, 0x96,
- 0x61, 0xce, 0x1f, 0x76, 0xc4, 0xd3, 0x54, 0x2f, 0x03, 0x4d, 0x3a, 0xa0, 0x47, 0x4d, 0x39, 0xd6,
- 0xff, 0x34, 0x1a, 0x5b, 0xaa, 0xd4, 0x8f, 0xfd, 0xec, 0x27, 0xf5, 0x36, 0xc6, 0xd9, 0x0f, 0x09,
- 0x07, 0x9c, 0xe8, 0x97, 0x80, 0x8a, 0xc0, 0x8b, 0x7a, 0x5c, 0xe7, 0xf1, 0xac, 0x3b, 0x8b, 0x94,
- 0x07, 0x3d, 0xce, 0xde, 0x81, 0x45, 0x29, 0x06, 0x41, 0x2c, 0xcc, 0x2c, 0xb3, 0xa7, 0x1a, 0x5c,
- 0x47, 0xe1, 0x31, 0x45, 0xf5, 0x47, 0x52, 0x40, 0xdb, 0x63, 0x36, 0x57, 0x91, 0x88, 0x61, 0x70,
- 0x3e, 0x4b, 0xc6, 0x13, 0x82, 0x34, 0xba, 0x75, 0x01, 0xf9, 0xa3, 0x4c, 0xc3, 0x13, 0x3a, 0x79,
- 0xa8, 0x4c, 0x3b, 0xc2, 0xc1, 0x52, 0x41, 0xd3, 0xcd, 0x8c, 0x9d, 0x4a, 0x97, 0x66, 0x8e, 0xf3,
- 0x23, 0xc5, 0xe8, 0xc1, 0x93, 0x5d, 0x1e, 0x1d, 0xff, 0xf9, 0x3c, 0xd2, 0xdb, 0x18, 0x31, 0x42,
- 0xc2, 0x01, 0x31, 0x52, 0x8b, 0x74, 0xa5, 0x8f, 0x43, 0x54, 0xd1, 0x04, 0x05, 0xc3, 0x59, 0x28,
- 0x8b, 0x61, 0x47, 0xb3, 0x6c, 0xcd, 0xb2, 0xc5, 0xb0, 0xa3, 0x18, 0x57, 0xc0, 0xc6, 0xa6, 0x43,
- 0x27, 0x85, 0xb4, 0x39, 0xc4, 0xcb, 0x69, 0x7b, 0x95, 0x9c, 0xb6, 0xe7, 0xf8, 0x18, 0xa1, 0x04,
- 0xa2, 0x71, 0x84, 0xc8, 0x1b, 0x23, 0x42, 0x48, 0x51, 0x16, 0x1c, 0x84, 0x3a, 0xde, 0xce, 0xdc,
- 0xc9, 0x10, 0xae, 0x7d, 0x53, 0x86, 0xfa, 0xa8, 0x4e, 0x1f, 0x08, 0xb9, 0xe7, 0xb7, 0x05, 0xfb,
- 0x10, 0xea, 0xd9, 0x17, 0x28, 0xb6, 0x9c, 0x6a, 0x2b, 0x93, 0xcf, 0x69, 0xcd, 0x95, 0xe9, 0x02,
- 0xe8, 0x80, 0x53, 0x48, 0x14, 0x9b, 0xef, 0x3a, 0x69, 0xc5, 0x39, 0x6f, 0x50, 0x69, 0xc5, 0x79,
- 0x4f, 0x42, 0x4e, 0x81, 0xdd, 0x83, 0xf9, 0xd4, 0x63, 0x02, 0xbb, 0x30, 0x69, 0xcd, 0xf8, 0xbd,
- 0xa4, 0xb9, 0x34, 0x85, 0x9b, 0xd5, 0x37, 0x7a, 0xae, 0x49, 0xeb, 0xcb, 0x3e, 0x27, 0xa5, 0xf5,
- 0x4d, 0xbc, 0xf1, 0x38, 0x05, 0xf6, 0x11, 0x2c, 0x64, 0x6e, 0xe6, 0xec, 0xa2, 0xb9, 0x66, 0xf2,
- 0x21, 0xa2, 0xb9, 0x3c, 0x95, 0x9f, 0x68, 0xbd, 0x66, 0xbd, 0x66, 0xb1, 0xf7, 0xa0, 0x6a, 0xde,
- 0x26, 0xd9, 0x79, 0x73, 0x59, 0xe6, 0x1a, 0xdc, 0xbc, 0x90, 0xcf, 0x1c, 0x99, 0xf9, 0x01, 0xd4,
- 0xd2, 0x17, 0x1a, 0x96, 0x46, 0x2a, 0x7b, 0x53, 0x6c, 0x5e, 0x9c, 0xc6, 0x1e, 0xa9, 0x6c, 0x01,
- 0x8c, 0x0f, 0xc3, 0xec, 0x5c, 0xaa, 0x2c, 0xcc, 0xdb, 0x45, 0xb3, 0x99, 0xc7, 0x1a, 0xa9, 0x79,
- 0x84, 0x00, 0x1a, 0x63, 0x28, 0x0d, 0xe0, 0xe4, 0xa0, 0x4c, 0x03, 0x98, 0x33, 0xbf, 0x14, 0x80,
- 0x63, 0xf3, 0x54, 0xa3, 0xcb, 0x9a, 0x67, 0x4c, 0x91, 0xac, 0x79, 0x66, 0xef, 0x1c, 0x7b, 0x89,
- 0x15, 0x9b, 0x56, 0x93, 0x6a, 0x74, 0x69, 0x35, 0xe9, 0x02, 0x77, 0x0a, 0x8f, 0x6d, 0xfd, 0x6a,
- 0xfd, 0xfa, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xb1, 0xcd, 0x2b, 0x31, 0xdf, 0x16, 0x00, 0x00,
+ // 1459 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0x4f, 0x73, 0xdb, 0x44,
+ 0x14, 0xb7, 0x6c, 0x57, 0x76, 0x5e, 0x1c, 0xc7, 0xd9, 0xfe, 0x73, 0xdd, 0xa6, 0x49, 0xd5, 0x16,
+ 0x4a, 0x87, 0xc9, 0x30, 0x81, 0x81, 0x53, 0x61, 0x9a, 0xc4, 0xa1, 0x2d, 0xb4, 0x0d, 0x6a, 0x5a,
+ 0xb8, 0x69, 0xb6, 0xf6, 0x62, 0x6b, 0xb0, 0x2d, 0x75, 0xa5, 0x64, 0x6a, 0x86, 0xe1, 0x06, 0x1c,
+ 0xb8, 0x70, 0xe2, 0xc0, 0x09, 0x86, 0x1b, 0xc3, 0x85, 0x0b, 0x07, 0x0e, 0x7c, 0x00, 0xae, 0x3d,
+ 0xf0, 0x75, 0x98, 0xdd, 0xf7, 0x64, 0x4b, 0xb2, 0x94, 0x49, 0x21, 0x19, 0x3a, 0x0c, 0x37, 0xe9,
+ 0xbd, 0xb7, 0x6f, 0xdf, 0xfb, 0xbd, 0x7f, 0xbb, 0x0b, 0x0d, 0xcf, 0x17, 0x92, 0x87, 0xae, 0x37,
+ 0x0a, 0xd6, 0x7c, 0xe9, 0x85, 0x1e, 0x33, 0x7b, 0x6e, 0xc8, 0x07, 0xe3, 0x56, 0x2d, 0xe8, 0x73,
+ 0x29, 0xba, 0x48, 0xb5, 0x7e, 0x31, 0xe0, 0xec, 0xc3, 0x40, 0xc8, 0x4d, 0x29, 0x78, 0x28, 0x36,
+ 0x24, 0x1f, 0x75, 0xfa, 0xb6, 0x78, 0xb2, 0x27, 0x82, 0x90, 0xad, 0x03, 0x48, 0xe1, 0x7b, 0x81,
+ 0x1b, 0x7a, 0x72, 0xdc, 0x34, 0x56, 0x8d, 0x6b, 0xf3, 0xeb, 0x6c, 0x0d, 0xd5, 0xac, 0xd9, 0x13,
+ 0x8e, 0x1d, 0x93, 0x62, 0x2b, 0x30, 0xff, 0x58, 0x2b, 0x71, 0x46, 0x7c, 0x28, 0x9a, 0xc5, 0x55,
+ 0xe3, 0x5a, 0xcd, 0x06, 0x24, 0xdd, 0xe3, 0x43, 0xc1, 0x56, 0xa1, 0xbc, 0x17, 0x08, 0xd9, 0x2c,
+ 0x69, 0x75, 0xb5, 0x48, 0x9d, 0xb2, 0xc1, 0xd6, 0x1c, 0xa5, 0x22, 0x08, 0xb9, 0x0c, 0x1d, 0xdf,
+ 0x73, 0x47, 0x61, 0xb3, 0x8c, 0x2a, 0x34, 0x69, 0x47, 0x51, 0xac, 0x11, 0x34, 0x67, 0x4d, 0x0e,
+ 0x7c, 0x6f, 0x14, 0x08, 0xf6, 0x12, 0x98, 0xb8, 0x19, 0xd9, 0x5b, 0x8f, 0x36, 0x20, 0x39, 0xe2,
+ 0xb2, 0xeb, 0xb0, 0xe4, 0x4b, 0xe1, 0x48, 0xd1, 0x11, 0xee, 0xbe, 0x70, 0x84, 0x94, 0x9e, 0xd4,
+ 0xd6, 0xce, 0xd9, 0x8b, 0xbe, 0x14, 0x36, 0xd2, 0xdb, 0x8a, 0x6c, 0x7d, 0x43, 0x18, 0x6d, 0x89,
+ 0x81, 0x78, 0x31, 0x30, 0xb2, 0xb6, 0x11, 0x82, 0xa4, 0x45, 0x04, 0x41, 0xa6, 0x6b, 0x46, 0xb6,
+ 0x6b, 0x5f, 0x19, 0x70, 0x6a, 0xaa, 0x68, 0x97, 0xf7, 0xfe, 0x89, 0x5f, 0xe7, 0xa0, 0x1a, 0xf2,
+ 0x5e, 0xdc, 0xa9, 0x4a, 0xc8, 0x7b, 0x87, 0xf4, 0x68, 0x13, 0x4e, 0xa7, 0x0c, 0xf9, 0x1b, 0xee,
+ 0xfc, 0x41, 0xee, 0x60, 0x6a, 0xfc, 0x8b, 0xee, 0xb0, 0x97, 0x61, 0x31, 0xe4, 0xb2, 0x27, 0x42,
+ 0x47, 0x8a, 0x7d, 0x37, 0x70, 0xbd, 0x11, 0x25, 0x72, 0x1d, 0xc9, 0x36, 0x51, 0x59, 0x13, 0x2a,
+ 0x43, 0x11, 0x04, 0xbc, 0x27, 0x9a, 0x27, 0x70, 0x13, 0xfa, 0xb5, 0x3e, 0x45, 0x44, 0x62, 0xbe,
+ 0x10, 0x22, 0xcb, 0x50, 0x0a, 0x79, 0x8f, 0xbc, 0x98, 0x8f, 0x36, 0x57, 0x12, 0x8a, 0xce, 0xce,
+ 0x80, 0x29, 0x9e, 0xba, 0x41, 0x18, 0x68, 0xab, 0xab, 0x36, 0xfd, 0x65, 0x03, 0x59, 0xca, 0x06,
+ 0xf2, 0x99, 0x01, 0x67, 0xd4, 0xe6, 0x77, 0x85, 0xec, 0x1d, 0x41, 0xc6, 0x47, 0x78, 0x15, 0x73,
+ 0xf1, 0x3a, 0x0f, 0x73, 0x1d, 0x6f, 0x38, 0x74, 0x43, 0xc7, 0xed, 0x92, 0x51, 0x55, 0x24, 0xdc,
+ 0xee, 0x2a, 0x8f, 0xa8, 0xa8, 0x11, 0xc3, 0xa8, 0x88, 0x73, 0xb1, 0x63, 0xa7, 0xe0, 0x04, 0xf7,
+ 0xfd, 0xc1, 0xb8, 0x69, 0x6a, 0x08, 0xf0, 0xc7, 0xfa, 0x99, 0x0a, 0x39, 0xe1, 0x15, 0x81, 0x9a,
+ 0x30, 0xc0, 0x48, 0x19, 0xb0, 0x01, 0x0b, 0x54, 0xb1, 0x7b, 0x7e, 0x97, 0x87, 0x82, 0x02, 0xbf,
+ 0x1c, 0x39, 0x72, 0x3f, 0x6a, 0xb6, 0xa8, 0xf4, 0xa1, 0x16, 0xb2, 0x6b, 0x8f, 0x63, 0x7f, 0xd9,
+ 0xf0, 0x97, 0x33, 0xe1, 0xbf, 0x53, 0xae, 0x16, 0x1b, 0x25, 0xeb, 0x73, 0x38, 0x9d, 0xa9, 0xf8,
+ 0x60, 0x5b, 0x2f, 0x41, 0x4d, 0x21, 0xef, 0x74, 0x74, 0xde, 0x74, 0x29, 0x09, 0xe6, 0x15, 0x0d,
+ 0x53, 0xa9, 0xcb, 0xae, 0x42, 0x9d, 0xdc, 0x89, 0x84, 0x4a, 0x5a, 0x88, 0x9c, 0x24, 0x31, 0xeb,
+ 0x7b, 0x03, 0x4e, 0x2a, 0xb8, 0xb6, 0xb7, 0x5f, 0xd4, 0x0c, 0xb0, 0xbe, 0xa4, 0x82, 0x9f, 0x9a,
+ 0x48, 0xe1, 0x9c, 0x89, 0x98, 0x71, 0x44, 0x11, 0xcb, 0x99, 0x11, 0xbf, 0x17, 0xa9, 0x5a, 0xfb,
+ 0x42, 0xca, 0xf1, 0x8e, 0xdb, 0xf9, 0xe4, 0x78, 0xd1, 0x7a, 0x05, 0x4c, 0x04, 0x87, 0x52, 0x71,
+ 0x29, 0x92, 0x79, 0xd7, 0x0d, 0x37, 0x35, 0xc3, 0x26, 0x81, 0xf4, 0xb8, 0x29, 0xcf, 0x8c, 0x9b,
+ 0xfc, 0x32, 0xba, 0x0e, 0x4b, 0x38, 0x8a, 0xe3, 0x0a, 0x4c, 0x2d, 0xb3, 0xa8, 0x19, 0x1b, 0x53,
+ 0x2d, 0x37, 0xa0, 0x81, 0xb2, 0x31, 0x6f, 0x2b, 0xb9, 0xde, 0xe2, 0xf2, 0x29, 0xc1, 0xfa, 0x93,
+ 0x3a, 0x4e, 0x1c, 0xc0, 0xa3, 0x8d, 0x25, 0xe6, 0xba, 0x13, 0x4a, 0x91, 0x8a, 0x25, 0x32, 0x76,
+ 0xa5, 0xc0, 0x58, 0xaa, 0x0a, 0xa2, 0x4c, 0x8c, 0xf7, 0xc8, 0x79, 0xa4, 0xa1, 0xc8, 0x73, 0x14,
+ 0xb3, 0xf5, 0x5b, 0x11, 0x96, 0x74, 0xe4, 0xc4, 0xbe, 0x50, 0x2e, 0xff, 0x9f, 0x16, 0xcf, 0x91,
+ 0x16, 0xcf, 0x0c, 0x60, 0x71, 0xf0, 0xfe, 0x1b, 0x29, 0xf1, 0x5d, 0x11, 0xce, 0xeb, 0x64, 0xd7,
+ 0xeb, 0xb7, 0xdd, 0x81, 0x08, 0x6e, 0x76, 0x94, 0xb9, 0xb7, 0x04, 0xef, 0x0a, 0xc9, 0xb6, 0xc1,
+ 0xe4, 0xfa, 0x5f, 0xfb, 0x55, 0x5f, 0x5f, 0x8b, 0x87, 0x3a, 0x67, 0xd1, 0x1a, 0xfe, 0xec, 0x8e,
+ 0x7d, 0x61, 0xd3, 0x6a, 0xd5, 0x53, 0x3f, 0x76, 0x07, 0xc2, 0xf1, 0x79, 0xd8, 0xa7, 0x33, 0x4c,
+ 0x55, 0x11, 0x76, 0x78, 0xd8, 0x67, 0x97, 0x61, 0xc1, 0x57, 0x87, 0x13, 0x6f, 0x2f, 0x40, 0x81,
+ 0x92, 0x16, 0xa8, 0x45, 0x44, 0x2d, 0xa4, 0x46, 0x05, 0x0f, 0xc4, 0x9b, 0x6f, 0x38, 0x1d, 0x6f,
+ 0x14, 0x0a, 0x3a, 0x8f, 0xab, 0x51, 0xa1, 0xa9, 0x9b, 0x48, 0xb4, 0xee, 0x00, 0x4c, 0xb7, 0x67,
+ 0x00, 0xe6, 0xa6, 0xdd, 0xbe, 0xb9, 0xdb, 0x6e, 0x14, 0x58, 0x1d, 0x00, 0xbf, 0x9d, 0xad, 0xdb,
+ 0x76, 0xc3, 0x50, 0xbc, 0x87, 0x3b, 0x5b, 0x8a, 0x57, 0x64, 0x55, 0x28, 0xdf, 0xbd, 0xff, 0xa8,
+ 0xdd, 0x28, 0x29, 0xea, 0x56, 0xfb, 0xfd, 0xf6, 0x6e, 0xbb, 0x51, 0xb6, 0xbe, 0x35, 0xa8, 0x95,
+ 0xa6, 0xfd, 0x64, 0x37, 0xc0, 0xec, 0x6b, 0x5f, 0x29, 0xdc, 0x97, 0x0f, 0x01, 0xcb, 0xad, 0x82,
+ 0x4d, 0x8b, 0x58, 0x0b, 0x2a, 0x91, 0x13, 0x1a, 0x8b, 0x5b, 0x05, 0x3b, 0x22, 0x6c, 0x58, 0xb0,
+ 0xaa, 0x0a, 0xc8, 0xa1, 0x28, 0x2b, 0x90, 0x02, 0x07, 0x51, 0x74, 0x7c, 0x3e, 0x1e, 0x78, 0xbc,
+ 0x6b, 0x7d, 0x51, 0x82, 0x0b, 0xa9, 0x9d, 0xa8, 0x9a, 0x29, 0x6c, 0xc7, 0x53, 0xd3, 0xa9, 0x42,
+ 0x2d, 0xcd, 0x14, 0xea, 0x55, 0xa8, 0x93, 0xd9, 0x51, 0xbd, 0x62, 0x31, 0x2f, 0x20, 0xf5, 0x2e,
+ 0x55, 0xed, 0xab, 0xc0, 0x48, 0x8c, 0xef, 0x85, 0x7d, 0x4f, 0xa2, 0x3a, 0x2c, 0xed, 0x06, 0x72,
+ 0x6e, 0x6a, 0x86, 0x56, 0xba, 0x06, 0x27, 0x93, 0xd2, 0x62, 0xc8, 0xdd, 0x01, 0x55, 0xf9, 0x52,
+ 0x5c, 0xbc, 0xad, 0x18, 0xd9, 0x3d, 0xa1, 0x72, 0xf8, 0x9e, 0x50, 0x3d, 0x7c, 0x4f, 0xf8, 0x35,
+ 0x1a, 0x15, 0x33, 0x71, 0x60, 0x6f, 0xa7, 0x32, 0xe4, 0x4a, 0x4e, 0x86, 0x24, 0xe2, 0x16, 0x4b,
+ 0x91, 0xb7, 0x26, 0x85, 0x57, 0x4c, 0x36, 0x94, 0xec, 0x0c, 0x2b, 0x44, 0x95, 0xb6, 0x71, 0x19,
+ 0x2e, 0xcd, 0xe6, 0x8f, 0xc4, 0x5d, 0x26, 0x09, 0xf4, 0x53, 0x74, 0xd9, 0x8e, 0x1b, 0x72, 0x84,
+ 0x1d, 0x6d, 0x05, 0xe6, 0xdd, 0x51, 0x57, 0x3c, 0x4d, 0xf4, 0x32, 0xd0, 0xa4, 0x03, 0x7a, 0x54,
+ 0xce, 0x15, 0xe0, 0xc7, 0xc9, 0xd8, 0x52, 0xa5, 0x7e, 0xec, 0x67, 0x3f, 0xa9, 0xb7, 0x89, 0x9d,
+ 0xfd, 0x90, 0x70, 0xc0, 0xe9, 0x7f, 0x19, 0xa8, 0x08, 0x9c, 0xa0, 0xcf, 0x75, 0x1e, 0xcf, 0xd9,
+ 0x73, 0x48, 0x79, 0xd0, 0xe7, 0xec, 0x1d, 0x58, 0x92, 0x62, 0xe8, 0x85, 0x22, 0x9e, 0x65, 0x66,
+ 0xae, 0xc1, 0x0d, 0x14, 0x9e, 0x52, 0x54, 0x7f, 0x24, 0x05, 0xb4, 0x3d, 0x66, 0x73, 0x0d, 0x89,
+ 0x18, 0x06, 0xeb, 0xb3, 0x68, 0x3c, 0x21, 0x48, 0x93, 0x1b, 0x1a, 0x90, 0x3f, 0xca, 0x34, 0x3c,
+ 0xa1, 0x93, 0x87, 0xca, 0xb4, 0xe7, 0x38, 0x58, 0x2a, 0x68, 0x7a, 0xa9, 0xb1, 0x53, 0xed, 0xd1,
+ 0xcc, 0xb1, 0x7e, 0xa0, 0x18, 0x3d, 0x78, 0xb2, 0xc7, 0x83, 0xe3, 0x3f, 0x9f, 0x07, 0x7a, 0x9b,
+ 0x58, 0x8c, 0x90, 0x70, 0x40, 0x8c, 0xd4, 0x22, 0x5d, 0xe9, 0xd3, 0x10, 0x55, 0x35, 0x41, 0xc1,
+ 0x70, 0x16, 0x2a, 0x62, 0xd4, 0xd5, 0x2c, 0x53, 0xb3, 0x4c, 0x31, 0xea, 0x2a, 0xc6, 0x15, 0x30,
+ 0xb1, 0xe9, 0xd0, 0x49, 0x21, 0x69, 0x0e, 0xf1, 0x32, 0xda, 0x5e, 0x35, 0xa3, 0xed, 0x59, 0x2e,
+ 0x46, 0x28, 0x82, 0x68, 0x1a, 0x21, 0xf2, 0x26, 0x16, 0x21, 0xa4, 0x28, 0x0b, 0x0e, 0x42, 0x1d,
+ 0x6f, 0x67, 0xf6, 0x6c, 0x08, 0xd7, 0xbf, 0xae, 0x40, 0x63, 0x52, 0xa7, 0x0f, 0x84, 0xdc, 0x77,
+ 0x3b, 0x82, 0x7d, 0x08, 0x8d, 0xf4, 0x6b, 0x15, 0x5b, 0x49, 0xb4, 0x95, 0xd9, 0xa7, 0xb7, 0xd6,
+ 0x6a, 0xbe, 0x00, 0x3a, 0x60, 0x15, 0x22, 0xc5, 0xf1, 0x37, 0xa0, 0xa4, 0xe2, 0x8c, 0xf7, 0xaa,
+ 0xa4, 0xe2, 0xac, 0xe7, 0x23, 0xab, 0xc0, 0xee, 0xc1, 0x42, 0xe2, 0xe1, 0x81, 0x5d, 0x98, 0xb5,
+ 0x66, 0xfa, 0xb6, 0xd2, 0x5a, 0xce, 0xe1, 0xa6, 0xf5, 0x4d, 0x9e, 0x76, 0x92, 0xfa, 0xd2, 0x4f,
+ 0x4f, 0x49, 0x7d, 0x33, 0xef, 0x41, 0x56, 0x81, 0x7d, 0x04, 0x8b, 0xa9, 0x5b, 0x3c, 0xbb, 0x18,
+ 0x5f, 0x33, 0xfb, 0x68, 0xd1, 0x5a, 0xc9, 0xe5, 0x47, 0x5a, 0xaf, 0x19, 0xaf, 0x19, 0xec, 0x3d,
+ 0xa8, 0xc5, 0x6f, 0x93, 0xec, 0x7c, 0x7c, 0x59, 0xea, 0x1a, 0xdc, 0xba, 0x90, 0xcd, 0x9c, 0x98,
+ 0xf9, 0x01, 0xd4, 0x93, 0x17, 0x1a, 0x96, 0x44, 0x2a, 0x7d, 0x53, 0x6c, 0x5d, 0xcc, 0x63, 0x4f,
+ 0x54, 0xb6, 0x01, 0xa6, 0x87, 0x61, 0x76, 0x2e, 0x51, 0x16, 0xf1, 0xdb, 0x45, 0xab, 0x95, 0xc5,
+ 0x9a, 0xa8, 0x79, 0x84, 0x00, 0xc6, 0xc6, 0x50, 0x12, 0xc0, 0xd9, 0x41, 0x99, 0x04, 0x30, 0x63,
+ 0x7e, 0x29, 0x00, 0xa7, 0xe6, 0xa9, 0x46, 0x97, 0x36, 0x2f, 0x36, 0x45, 0xd2, 0xe6, 0xc5, 0x7b,
+ 0xe7, 0xd4, 0x4b, 0xac, 0xd8, 0xa4, 0x9a, 0x44, 0xa3, 0x4b, 0xaa, 0x49, 0x16, 0xb8, 0x55, 0x78,
+ 0x6c, 0xea, 0x17, 0xee, 0xd7, 0xff, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x36, 0x90, 0x2b, 0x73, 0x0b,
+ 0x17, 0x00, 0x00,
}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ref.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ref.pb.go
index e28134b5f..cf8bec0a1 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ref.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ref.pb.go
@@ -621,8 +621,10 @@ func (m *FindBranchResponse) GetBranch() *Branch {
}
type DeleteRefsRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- ExceptWithPrefix [][]byte `protobuf:"bytes,2,rep,name=except_with_prefix,json=exceptWithPrefix,proto3" json:"except_with_prefix,omitempty"`
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+ // The following two fields are mutually exclusive
+ ExceptWithPrefix [][]byte `protobuf:"bytes,2,rep,name=except_with_prefix,json=exceptWithPrefix,proto3" json:"except_with_prefix,omitempty"`
+ Refs [][]byte `protobuf:"bytes,3,rep,name=refs,proto3" json:"refs,omitempty"`
}
func (m *DeleteRefsRequest) Reset() { *m = DeleteRefsRequest{} }
@@ -644,7 +646,15 @@ func (m *DeleteRefsRequest) GetExceptWithPrefix() [][]byte {
return nil
}
+func (m *DeleteRefsRequest) GetRefs() [][]byte {
+ if m != nil {
+ return m.Refs
+ }
+ return nil
+}
+
type DeleteRefsResponse struct {
+ GitError string `protobuf:"bytes,1,opt,name=git_error,json=gitError" json:"git_error,omitempty"`
}
func (m *DeleteRefsResponse) Reset() { *m = DeleteRefsResponse{} }
@@ -652,6 +662,13 @@ func (m *DeleteRefsResponse) String() string { return proto.CompactTe
func (*DeleteRefsResponse) ProtoMessage() {}
func (*DeleteRefsResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{25} }
+func (m *DeleteRefsResponse) GetGitError() string {
+ if m != nil {
+ return m.GitError
+ }
+ return ""
+}
+
type ListBranchNamesContainingCommitRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
CommitId string `protobuf:"bytes,2,opt,name=commit_id,json=commitId" json:"commit_id,omitempty"`
@@ -1498,83 +1515,85 @@ var _RefService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("ref.proto", fileDescriptor8) }
var fileDescriptor8 = []byte{
- // 1236 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xcd, 0x72, 0x1a, 0xc7,
- 0x13, 0xd7, 0x22, 0xc4, 0x1f, 0x1a, 0x8c, 0x56, 0x63, 0xfe, 0x32, 0x5a, 0x14, 0x23, 0x8d, 0x6d,
- 0x7d, 0x54, 0x5c, 0x28, 0x85, 0x2b, 0xb9, 0x24, 0x87, 0x20, 0x20, 0x16, 0xb6, 0x82, 0x54, 0x03,
- 0x71, 0x54, 0x95, 0xa4, 0xb6, 0x16, 0x18, 0xd0, 0xa6, 0x80, 0x25, 0xbb, 0x83, 0x2d, 0x1d, 0x9c,
- 0x63, 0x2e, 0x49, 0x55, 0x6e, 0x79, 0x84, 0xbc, 0x4a, 0x0e, 0x79, 0x96, 0xbc, 0x43, 0x8a, 0x99,
- 0xd9, 0x0f, 0xd0, 0x82, 0x54, 0x21, 0xaa, 0x9c, 0xd8, 0xe9, 0xe9, 0xfe, 0xf5, 0xe7, 0x74, 0x37,
- 0x90, 0xb0, 0x69, 0xb7, 0x30, 0xb2, 0x2d, 0x66, 0xa1, 0x58, 0xcf, 0x64, 0x46, 0xff, 0x5a, 0x4b,
- 0x39, 0x97, 0x86, 0x4d, 0x3b, 0x82, 0xaa, 0xe5, 0x7b, 0x96, 0xd5, 0xeb, 0xd3, 0x23, 0x7e, 0x6a,
- 0x8d, 0xbb, 0x47, 0xcc, 0x1c, 0x50, 0x87, 0x19, 0x83, 0x91, 0x60, 0xc0, 0x04, 0xb6, 0xbf, 0x30,
- 0x87, 0x9d, 0x0a, 0xed, 0x1a, 0xe3, 0x3e, 0x3b, 0xb6, 0x8d, 0x61, 0xfb, 0xb2, 0x6e, 0x0c, 0x28,
- 0xa1, 0x3f, 0x8c, 0xa9, 0xc3, 0x50, 0x11, 0xc0, 0xa6, 0x23, 0xcb, 0x31, 0x99, 0x65, 0x5f, 0x67,
- 0x95, 0x1d, 0xe5, 0x20, 0x59, 0x44, 0x05, 0xa1, 0xab, 0x40, 0xbc, 0x1b, 0x12, 0xe0, 0xc2, 0x2f,
- 0xe0, 0x83, 0x39, 0x98, 0xce, 0xc8, 0x1a, 0x3a, 0x14, 0x21, 0x88, 0x0e, 0x8d, 0x01, 0xe5, 0x70,
- 0x29, 0xc2, 0xbf, 0xf1, 0x19, 0x6c, 0x4d, 0x84, 0x4a, 0xfd, 0xbe, 0x2f, 0xe0, 0x2c, 0x63, 0x45,
- 0x11, 0xb4, 0x30, 0x40, 0x69, 0x42, 0x06, 0xd6, 0x26, 0x6a, 0x9d, 0xac, 0xb2, 0xb3, 0x7a, 0x90,
- 0x22, 0xe2, 0x80, 0x4f, 0x61, 0x53, 0xca, 0x34, 0x8d, 0xde, 0xd2, 0x16, 0x1c, 0xc1, 0xa3, 0x1b,
- 0x68, 0x0b, 0xd5, 0xbf, 0x07, 0x34, 0x11, 0x20, 0xb4, 0xbb, 0x64, 0x0a, 0x50, 0x0e, 0x12, 0x6d,
- 0x6b, 0x30, 0x30, 0x99, 0x6e, 0x76, 0xb2, 0x91, 0x1d, 0xe5, 0x20, 0x41, 0xe2, 0x82, 0x50, 0xeb,
- 0xa0, 0x4d, 0x88, 0x8d, 0x6c, 0xda, 0x35, 0xaf, 0xb2, 0xab, 0x3c, 0x01, 0xf2, 0x84, 0x0f, 0xe1,
- 0xe1, 0x94, 0xfa, 0x05, 0xd9, 0xfa, 0x43, 0x81, 0xec, 0x84, 0xf7, 0xd4, 0x6a, 0x1b, 0x32, 0xbe,
- 0x4b, 0xc5, 0x0a, 0x7d, 0x0e, 0xff, 0x73, 0x2c, 0x9b, 0xe9, 0xad, 0x6b, 0x6e, 0x6e, 0xba, 0xb8,
- 0xef, 0x0a, 0xcc, 0x53, 0x53, 0x68, 0x58, 0x36, 0x3b, 0xbe, 0x26, 0x31, 0x87, 0xff, 0xe2, 0x8f,
- 0x21, 0x26, 0x28, 0x28, 0x0e, 0xd1, 0x7a, 0xe9, 0xcb, 0xaa, 0xba, 0x82, 0xd6, 0x21, 0xf9, 0xd5,
- 0x79, 0xa5, 0xd4, 0xac, 0x56, 0xf4, 0x52, 0xa3, 0xac, 0x2a, 0x48, 0x85, 0x94, 0x4b, 0xa8, 0x54,
- 0x1b, 0x65, 0x35, 0x82, 0x2f, 0x44, 0xdd, 0xcd, 0x68, 0x90, 0xae, 0x7f, 0x0a, 0xf1, 0x96, 0xa4,
- 0xf1, 0x4c, 0x25, 0x8b, 0xf9, 0x39, 0x66, 0xb9, 0x22, 0xc4, 0x13, 0xc0, 0x3f, 0x47, 0x44, 0xfe,
- 0x43, 0xb8, 0xc2, 0x62, 0xba, 0x38, 0x67, 0xcf, 0x20, 0x2d, 0x2f, 0x9d, 0x71, 0xeb, 0x7b, 0xda,
- 0x66, 0x32, 0x77, 0x0f, 0x04, 0xb5, 0x21, 0x88, 0xe8, 0x04, 0x24, 0x41, 0x37, 0xc6, 0xec, 0xd2,
- 0xb2, 0xb3, 0x51, 0x1e, 0xfd, 0x27, 0x73, 0xac, 0x2e, 0x73, 0xde, 0x12, 0x67, 0x25, 0xa9, 0x76,
- 0xe0, 0x84, 0xea, 0xa0, 0x4a, 0x24, 0xf1, 0xc3, 0xa8, 0x9d, 0x5d, 0xbb, 0x3b, 0xd8, 0xba, 0x90,
- 0x2a, 0xbb, 0xb2, 0xf8, 0x1d, 0xe4, 0x16, 0xf0, 0x87, 0x06, 0x24, 0x03, 0x6b, 0x74, 0x60, 0x98,
- 0x7d, 0x1e, 0x8c, 0x14, 0x11, 0x07, 0x54, 0x80, 0x68, 0xc7, 0x60, 0x94, 0xfb, 0x9f, 0x2c, 0x6a,
- 0x05, 0xd1, 0xe1, 0x0a, 0x6e, 0x87, 0x2b, 0x34, 0xdd, 0x0e, 0x47, 0x38, 0x1f, 0xfe, 0x4d, 0xf1,
- 0x1e, 0xf5, 0xbf, 0x51, 0xa8, 0x79, 0x48, 0x0e, 0xa8, 0xdd, 0xa3, 0x1d, 0xdd, 0x1a, 0xf6, 0x45,
- 0xb1, 0xc6, 0x09, 0x08, 0xd2, 0xd9, 0xb0, 0x7f, 0x8d, 0xf6, 0x61, 0x5d, 0x32, 0x78, 0xa5, 0xb3,
- 0xca, 0x1f, 0x79, 0x5a, 0x90, 0x5d, 0x23, 0xf0, 0xef, 0x8a, 0xd7, 0x1f, 0x6e, 0x14, 0xde, 0xf1,
- 0x8d, 0xc2, 0xdb, 0x0b, 0x46, 0x3d, 0x44, 0xa4, 0x20, 0x2b, 0xcc, 0x93, 0xd3, 0x5e, 0x42, 0x4c,
- 0xd0, 0x42, 0x83, 0x7b, 0x08, 0x31, 0x66, 0xd8, 0x3d, 0xca, 0xb8, 0x0b, 0xc9, 0xe2, 0x86, 0x8b,
- 0xff, 0xd2, 0xcd, 0x1a, 0x91, 0x0c, 0xf8, 0x44, 0xb4, 0x25, 0xd1, 0xc7, 0x96, 0xea, 0x88, 0x9f,
- 0x88, 0x0e, 0xe3, 0x21, 0x49, 0x6f, 0xf3, 0x10, 0x65, 0x46, 0xcf, 0xf5, 0x34, 0xe9, 0x82, 0x34,
- 0x8d, 0x1e, 0xe1, 0x17, 0xf8, 0x02, 0x54, 0x42, 0xbb, 0xd5, 0x2b, 0xd3, 0x61, 0x4b, 0x25, 0x4f,
- 0x85, 0x55, 0x9b, 0x76, 0x65, 0x3d, 0x4d, 0x3e, 0xf1, 0x21, 0x6c, 0x04, 0x90, 0xfd, 0xee, 0xfc,
- 0xd6, 0xe8, 0x8f, 0x45, 0xc0, 0xe2, 0x44, 0x1c, 0xf0, 0x8f, 0xf0, 0xb0, 0x6c, 0x53, 0x83, 0x51,
- 0xf7, 0x2d, 0xff, 0x73, 0x3b, 0xdc, 0x84, 0x44, 0x02, 0x09, 0xc9, 0x43, 0xd2, 0x61, 0x86, 0xcd,
- 0xf4, 0x91, 0x65, 0x0e, 0xdd, 0xe7, 0x0d, 0x9c, 0x74, 0x3e, 0xa1, 0xe0, 0x3f, 0x15, 0xc8, 0x4c,
- 0x1b, 0xe0, 0x75, 0xa9, 0x98, 0xc3, 0x0c, 0x36, 0x76, 0xb8, 0xf6, 0xb4, 0xff, 0x40, 0xc3, 0xb8,
- 0x0b, 0x0d, 0xce, 0x4a, 0xa4, 0x08, 0xda, 0x83, 0x98, 0xa8, 0x18, 0x59, 0x07, 0x69, 0x57, 0x58,
- 0x8a, 0xc9, 0x5b, 0x5c, 0x87, 0x98, 0x90, 0x44, 0x31, 0x88, 0x9c, 0xbd, 0x56, 0x57, 0x50, 0x1a,
- 0xa0, 0x4a, 0x88, 0x5e, 0xbd, 0xa8, 0x35, 0x9a, 0x0d, 0x55, 0x99, 0x34, 0xdb, 0xc9, 0xb9, 0x56,
- 0x7f, 0x53, 0x3a, 0xad, 0x55, 0xd4, 0x08, 0xca, 0xc1, 0xa3, 0x00, 0x41, 0x6f, 0x34, 0x4b, 0xa4,
- 0xa9, 0x9f, 0x9f, 0xd5, 0xea, 0x4d, 0x75, 0x15, 0x7f, 0x07, 0x0f, 0x2b, 0xb4, 0x4f, 0xef, 0x29,
- 0x9a, 0x78, 0x13, 0x32, 0xd3, 0xf0, 0xc2, 0x7b, 0xfc, 0x0d, 0x6c, 0x4c, 0x2a, 0xf0, 0x7e, 0x94,
- 0x7e, 0x26, 0x1e, 0xca, 0x4c, 0x7a, 0xfc, 0x08, 0x2b, 0x0b, 0x23, 0x3c, 0x86, 0x0d, 0x61, 0x32,
- 0xa1, 0xdd, 0xa5, 0xaa, 0xfc, 0x39, 0x20, 0x7a, 0xd5, 0xa6, 0x23, 0xa6, 0xbf, 0x33, 0xd9, 0xa5,
- 0x2e, 0x67, 0x7d, 0x84, 0x37, 0x21, 0x55, 0xdc, 0x7c, 0x6d, 0xb2, 0xcb, 0x73, 0x31, 0xf5, 0x33,
- 0x80, 0x82, 0x6a, 0x65, 0x9c, 0x7e, 0x55, 0x60, 0xef, 0xd4, 0x74, 0x02, 0xdb, 0x9b, 0x53, 0xb6,
- 0x86, 0xcc, 0x30, 0x87, 0xe6, 0xb0, 0x27, 0xfb, 0xc3, 0x7d, 0xed, 0x27, 0x19, 0x58, 0xeb, 0x9b,
- 0x03, 0x53, 0xbc, 0x81, 0x07, 0x44, 0x1c, 0x30, 0x81, 0xfd, 0x5b, 0x0d, 0x92, 0x11, 0xdf, 0x85,
- 0x94, 0x88, 0xa9, 0x2e, 0x96, 0x2c, 0xe1, 0x7a, 0xb2, 0xe5, 0x8b, 0xbe, 0x8a, 0xc6, 0x15, 0x35,
- 0x82, 0x7f, 0x51, 0xe0, 0xc9, 0x04, 0xd4, 0xdd, 0xcf, 0xfe, 0x63, 0x17, 0x6b, 0xf0, 0x74, 0xb1,
- 0x35, 0xd2, 0xbf, 0x1c, 0x24, 0x98, 0xd1, 0x9b, 0x72, 0x2e, 0xce, 0xa4, 0x90, 0xf0, 0xac, 0xf8,
- 0x57, 0x02, 0x80, 0xd0, 0x6e, 0x83, 0xda, 0x6f, 0xcd, 0x36, 0x45, 0x5d, 0xf8, 0x7f, 0xe8, 0x4a,
- 0x8e, 0x9e, 0x06, 0xc7, 0xca, 0xbc, 0x7f, 0x01, 0xda, 0xb3, 0x5b, 0xb8, 0x64, 0xd1, 0xac, 0x20,
- 0xdd, 0x1b, 0x15, 0x81, 0x3c, 0xa1, 0xdd, 0xd0, 0xd9, 0x15, 0xdc, 0xaf, 0x35, 0xbc, 0x88, 0xc5,
- 0x85, 0xff, 0x48, 0x41, 0x6f, 0x60, 0x7d, 0x66, 0xa7, 0x46, 0x8f, 0x67, 0x44, 0x67, 0x56, 0x77,
- 0x2d, 0x3f, 0xf7, 0x3e, 0x80, 0x7b, 0x02, 0xc9, 0xc0, 0xee, 0x8b, 0xb4, 0xa0, 0xcc, 0xf4, 0x3e,
- 0xae, 0xe5, 0x42, 0xef, 0xbc, 0x10, 0x7c, 0x2b, 0x3a, 0xcc, 0xd4, 0x42, 0x89, 0x76, 0x6e, 0xdb,
- 0x66, 0xb5, 0xdd, 0x05, 0x1c, 0xa1, 0xfe, 0x7b, 0xd8, 0x8f, 0xe7, 0x6e, 0x06, 0xe1, 0xfe, 0x87,
- 0xe2, 0xbe, 0x12, 0xfe, 0xcb, 0xc9, 0x3c, 0xed, 0xff, 0xf4, 0xe0, 0x9f, 0xf6, 0x7f, 0x66, 0x94,
- 0x73, 0xac, 0x63, 0x48, 0x78, 0x33, 0x15, 0x65, 0xfd, 0x67, 0x32, 0x3d, 0xc0, 0xb5, 0xad, 0x90,
- 0x1b, 0x2f, 0x8a, 0xaf, 0x21, 0x15, 0x9c, 0x5e, 0x28, 0x17, 0x3e, 0xd3, 0x04, 0xd2, 0xf6, 0xa2,
- 0x81, 0x27, 0xc0, 0x82, 0xc3, 0xc0, 0x07, 0x0b, 0x99, 0x40, 0x3e, 0x58, 0xe8, 0xfc, 0x58, 0x41,
- 0x55, 0x00, 0xbf, 0xc9, 0xa3, 0xad, 0x60, 0x30, 0xa6, 0x81, 0xb4, 0xb0, 0xab, 0x20, 0x8c, 0xdf,
- 0x76, 0x7d, 0x98, 0x1b, 0x13, 0xc0, 0x87, 0x09, 0xe9, 0xd2, 0x2b, 0xe8, 0x27, 0x05, 0xf2, 0xb7,
- 0xb4, 0x45, 0x54, 0x70, 0x11, 0xee, 0xd6, 0xd0, 0xb5, 0xa3, 0x3b, 0xf3, 0x07, 0x92, 0xfe, 0x1e,
- 0xb6, 0x17, 0xf5, 0x2e, 0xf4, 0x61, 0x10, 0xf4, 0x96, 0x7e, 0xab, 0x3d, 0xbf, 0x1b, 0xb3, 0xaf,
- 0xbe, 0x15, 0xe3, 0xfb, 0xff, 0x8b, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x3a, 0x16, 0x95, 0xc2,
- 0x12, 0x11, 0x00, 0x00,
+ // 1266 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xdd, 0x6e, 0x1a, 0xc7,
+ 0x17, 0xf7, 0x62, 0xcc, 0x1f, 0x0e, 0x04, 0xaf, 0x27, 0xfe, 0x27, 0x64, 0x49, 0x83, 0x33, 0xf9,
+ 0xb4, 0x1a, 0xe1, 0x96, 0xa8, 0xbd, 0x69, 0x2f, 0x8a, 0x81, 0xc6, 0x24, 0x2e, 0xb6, 0x06, 0x9a,
+ 0x5a, 0x6a, 0xab, 0xd5, 0x02, 0xc3, 0x7a, 0x2b, 0x60, 0xe9, 0xee, 0x90, 0xd8, 0x17, 0xe9, 0x65,
+ 0xa5, 0xaa, 0x95, 0x7a, 0xd7, 0x47, 0xe8, 0xab, 0xf4, 0xa2, 0xcf, 0xd2, 0x77, 0xa8, 0x76, 0x66,
+ 0xf6, 0x03, 0xbc, 0x60, 0xab, 0xd4, 0xea, 0x15, 0x3b, 0x67, 0xce, 0xf9, 0xcd, 0xf9, 0x98, 0xf9,
+ 0x9d, 0x03, 0x64, 0x1c, 0x3a, 0x28, 0x4f, 0x1c, 0x9b, 0xd9, 0x28, 0x65, 0x5a, 0xcc, 0x18, 0x9e,
+ 0x6b, 0x39, 0xf7, 0xd4, 0x70, 0x68, 0x5f, 0x48, 0xb5, 0x92, 0x69, 0xdb, 0xe6, 0x90, 0xee, 0xf1,
+ 0x55, 0x77, 0x3a, 0xd8, 0x63, 0xd6, 0x88, 0xba, 0xcc, 0x18, 0x4d, 0x84, 0x02, 0x26, 0x70, 0xf7,
+ 0x73, 0x6b, 0xdc, 0xaf, 0xd3, 0x81, 0x31, 0x1d, 0xb2, 0x7d, 0xc7, 0x18, 0xf7, 0x4e, 0x5b, 0xc6,
+ 0x88, 0x12, 0xfa, 0xfd, 0x94, 0xba, 0x0c, 0x55, 0x00, 0x1c, 0x3a, 0xb1, 0x5d, 0x8b, 0xd9, 0xce,
+ 0x79, 0x41, 0xd9, 0x51, 0x9e, 0x66, 0x2b, 0xa8, 0x2c, 0xce, 0x2a, 0x93, 0x60, 0x87, 0x44, 0xb4,
+ 0xf0, 0x73, 0x78, 0x6f, 0x01, 0xa6, 0x3b, 0xb1, 0xc7, 0x2e, 0x45, 0x08, 0x92, 0x63, 0x63, 0x44,
+ 0x39, 0x5c, 0x8e, 0xf0, 0x6f, 0x7c, 0x04, 0x77, 0x3c, 0xa3, 0xea, 0x70, 0x18, 0x1a, 0xb8, 0xab,
+ 0x78, 0x51, 0x01, 0x2d, 0x0e, 0x50, 0xba, 0xb0, 0x0d, 0x1b, 0xde, 0xb1, 0x6e, 0x41, 0xd9, 0x59,
+ 0x7f, 0x9a, 0x23, 0x62, 0x81, 0x0f, 0xe1, 0x96, 0xb4, 0xe9, 0x18, 0xe6, 0xca, 0x1e, 0xec, 0xc1,
+ 0xed, 0x0b, 0x68, 0x4b, 0x8f, 0x7f, 0x07, 0xc8, 0x33, 0x20, 0x74, 0xb0, 0x62, 0x09, 0x50, 0x11,
+ 0x32, 0x3d, 0x7b, 0x34, 0xb2, 0x98, 0x6e, 0xf5, 0x0b, 0x89, 0x1d, 0xe5, 0x69, 0x86, 0xa4, 0x85,
+ 0xa0, 0xd9, 0x47, 0xb7, 0x20, 0x35, 0x71, 0xe8, 0xc0, 0x3a, 0x2b, 0xac, 0xf3, 0x02, 0xc8, 0x15,
+ 0xde, 0x85, 0x9b, 0x33, 0xc7, 0x2f, 0xa9, 0xd6, 0x1f, 0x0a, 0x14, 0x3c, 0xdd, 0x43, 0xbb, 0x67,
+ 0xc8, 0xfc, 0xae, 0x94, 0x2b, 0xf4, 0x19, 0xfc, 0xcf, 0xb5, 0x1d, 0xa6, 0x77, 0xcf, 0xb9, 0xbb,
+ 0xf9, 0xca, 0x13, 0xdf, 0x60, 0xd1, 0x31, 0xe5, 0xb6, 0xed, 0xb0, 0xfd, 0x73, 0x92, 0x72, 0xf9,
+ 0x2f, 0xfe, 0x08, 0x52, 0x42, 0x82, 0xd2, 0x90, 0x6c, 0x55, 0xbf, 0x68, 0xa8, 0x6b, 0x68, 0x13,
+ 0xb2, 0x5f, 0x1e, 0xd7, 0xab, 0x9d, 0x46, 0x5d, 0xaf, 0xb6, 0x6b, 0xaa, 0x82, 0x54, 0xc8, 0xf9,
+ 0x82, 0x7a, 0xa3, 0x5d, 0x53, 0x13, 0xf8, 0x44, 0xdc, 0xbb, 0xb9, 0x13, 0x64, 0xe8, 0x9f, 0x40,
+ 0xba, 0x2b, 0x65, 0xbc, 0x52, 0xd9, 0x4a, 0x69, 0x81, 0x5b, 0xbe, 0x09, 0x09, 0x0c, 0xf0, 0xcf,
+ 0x09, 0x51, 0xff, 0x18, 0xad, 0xb8, 0x9c, 0x2e, 0xaf, 0xd9, 0x23, 0xc8, 0xcb, 0x4d, 0x77, 0xda,
+ 0xfd, 0x8e, 0xf6, 0x98, 0xac, 0xdd, 0x0d, 0x21, 0x6d, 0x0b, 0x21, 0x3a, 0x00, 0x29, 0xd0, 0x8d,
+ 0x29, 0x3b, 0xb5, 0x9d, 0x42, 0x92, 0x67, 0xff, 0xc1, 0x02, 0xaf, 0x6b, 0x5c, 0xb7, 0xca, 0x55,
+ 0x49, 0xae, 0x17, 0x59, 0xa1, 0x16, 0xa8, 0x12, 0x49, 0xfc, 0x30, 0xea, 0x14, 0x36, 0xae, 0x0e,
+ 0xb6, 0x29, 0xac, 0x6a, 0xbe, 0x2d, 0x7e, 0x0b, 0xc5, 0x25, 0xfa, 0xb1, 0x09, 0xd9, 0x86, 0x0d,
+ 0x3a, 0x32, 0xac, 0x21, 0x4f, 0x46, 0x8e, 0x88, 0x05, 0x2a, 0x43, 0xb2, 0x6f, 0x30, 0xca, 0xe3,
+ 0xcf, 0x56, 0xb4, 0xb2, 0x60, 0xb8, 0xb2, 0xcf, 0x70, 0xe5, 0x8e, 0xcf, 0x70, 0x84, 0xeb, 0xe1,
+ 0xdf, 0x94, 0xe0, 0x51, 0xff, 0x1b, 0x17, 0xb5, 0x04, 0xd9, 0x11, 0x75, 0x4c, 0xda, 0xd7, 0xed,
+ 0xf1, 0x50, 0x5c, 0xd6, 0x34, 0x01, 0x21, 0x3a, 0x1a, 0x0f, 0xcf, 0xd1, 0x13, 0xd8, 0x94, 0x0a,
+ 0xc1, 0xd5, 0x59, 0xe7, 0x8f, 0x3c, 0x2f, 0xc4, 0xbe, 0x13, 0xf8, 0x77, 0x25, 0xe0, 0x87, 0x0b,
+ 0x17, 0x6f, 0xff, 0xc2, 0xc5, 0x7b, 0x1c, 0xcd, 0x7a, 0x8c, 0x49, 0x59, 0xde, 0xb0, 0xc0, 0x4e,
+ 0x7b, 0x01, 0x29, 0x21, 0x8b, 0x4d, 0xee, 0x2e, 0xa4, 0x98, 0xe1, 0x98, 0x94, 0xf1, 0x10, 0xb2,
+ 0x95, 0x2d, 0x1f, 0xff, 0x85, 0x5f, 0x35, 0x22, 0x15, 0xf0, 0x81, 0xa0, 0x25, 0xc1, 0x63, 0x2b,
+ 0x31, 0xe2, 0xc7, 0x82, 0x61, 0x02, 0x24, 0x19, 0x6d, 0x09, 0x92, 0xcc, 0x30, 0xfd, 0x48, 0xb3,
+ 0x3e, 0x48, 0xc7, 0x30, 0x09, 0xdf, 0xc0, 0x27, 0xa0, 0x12, 0x3a, 0x68, 0x9c, 0x59, 0x2e, 0x5b,
+ 0xa9, 0x78, 0x2a, 0xac, 0x3b, 0x74, 0x20, 0xef, 0x93, 0xf7, 0x89, 0x77, 0x61, 0x2b, 0x82, 0x1c,
+ 0xb2, 0xf3, 0x1b, 0x63, 0x38, 0x15, 0x09, 0x4b, 0x13, 0xb1, 0xc0, 0x3f, 0xc0, 0xcd, 0x9a, 0x43,
+ 0x0d, 0x46, 0xfd, 0xb7, 0xfc, 0xcf, 0xfd, 0xf0, 0x0b, 0x92, 0x88, 0x14, 0xa4, 0x04, 0x59, 0x97,
+ 0x19, 0x0e, 0xd3, 0x27, 0xb6, 0x35, 0xf6, 0x9f, 0x37, 0x70, 0xd1, 0xb1, 0x27, 0xc1, 0x7f, 0x2a,
+ 0xb0, 0x3d, 0xeb, 0x40, 0xc0, 0x52, 0x29, 0x97, 0x19, 0x6c, 0xea, 0xf2, 0xd3, 0xf3, 0xe1, 0x03,
+ 0x8d, 0xd3, 0x2e, 0xb7, 0xb9, 0x2a, 0x91, 0x26, 0xe8, 0x31, 0xa4, 0xc4, 0x8d, 0x91, 0xf7, 0x20,
+ 0xef, 0x1b, 0x4b, 0x33, 0xb9, 0x8b, 0x5b, 0x90, 0x12, 0x96, 0x28, 0x05, 0x89, 0xa3, 0x57, 0xea,
+ 0x1a, 0xca, 0x03, 0x34, 0x08, 0xd1, 0x1b, 0x27, 0xcd, 0x76, 0xa7, 0xad, 0x2a, 0x1e, 0xd9, 0x7a,
+ 0xeb, 0x66, 0xeb, 0x75, 0xf5, 0xb0, 0x59, 0x57, 0x13, 0xa8, 0x08, 0xb7, 0x23, 0x02, 0xbd, 0xdd,
+ 0xa9, 0x92, 0x8e, 0x7e, 0x7c, 0xd4, 0x6c, 0x75, 0xd4, 0x75, 0xfc, 0x2d, 0xdc, 0xac, 0xd3, 0x21,
+ 0xbd, 0xa6, 0x6c, 0xe2, 0x5b, 0xb0, 0x3d, 0x0b, 0x2f, 0xa2, 0xc7, 0x5f, 0xc3, 0x96, 0x77, 0x03,
+ 0xaf, 0xe7, 0xd0, 0x4f, 0xc5, 0x43, 0x99, 0x2b, 0x4f, 0x98, 0x61, 0x65, 0x69, 0x86, 0x7f, 0x52,
+ 0x60, 0x4b, 0xf8, 0x4c, 0xe8, 0x60, 0xa5, 0x6b, 0xfe, 0x0c, 0x10, 0x3d, 0xeb, 0xd1, 0x09, 0xd3,
+ 0xdf, 0x5a, 0xec, 0x54, 0x97, 0xcd, 0x3e, 0xc1, 0x59, 0x48, 0x15, 0x3b, 0x5f, 0x59, 0xec, 0xf4,
+ 0x98, 0xcb, 0xbd, 0x48, 0x1c, 0x3a, 0xf0, 0x59, 0x8a, 0x7f, 0xe3, 0x0f, 0x01, 0x45, 0x5d, 0x91,
+ 0x91, 0x14, 0x21, 0x63, 0x5a, 0x4c, 0xa7, 0x8e, 0x63, 0x3b, 0xdc, 0x95, 0x0c, 0x49, 0x9b, 0x16,
+ 0x6b, 0x78, 0x6b, 0xfc, 0xab, 0x02, 0x8f, 0x0f, 0x2d, 0x37, 0x32, 0xef, 0xb9, 0x35, 0x7b, 0xcc,
+ 0x0c, 0x6b, 0x6c, 0x8d, 0x4d, 0xc9, 0x28, 0xd7, 0x35, 0xd1, 0x6c, 0xc3, 0xc6, 0xd0, 0x1a, 0x59,
+ 0xe2, 0xd5, 0xdc, 0x20, 0x62, 0x81, 0x09, 0x3c, 0xb9, 0xd4, 0x21, 0x19, 0xd9, 0x7d, 0xc8, 0x89,
+ 0x2a, 0xe8, 0x62, 0x2c, 0x13, 0xb9, 0xca, 0x76, 0x43, 0xd3, 0x97, 0xc9, 0xb4, 0xa2, 0x26, 0xf0,
+ 0x2f, 0x0a, 0x3c, 0xf0, 0x40, 0xfd, 0x89, 0xee, 0x3f, 0x0e, 0xb1, 0x09, 0x0f, 0x97, 0x7b, 0x13,
+ 0x56, 0x8e, 0x19, 0xe6, 0x4c, 0x70, 0x69, 0x26, 0x8d, 0x44, 0x64, 0x95, 0xbf, 0x32, 0x00, 0x84,
+ 0x0e, 0xda, 0xd4, 0x79, 0x63, 0xf5, 0x28, 0x1a, 0xc0, 0xff, 0x63, 0x87, 0x78, 0xf4, 0x30, 0xda,
+ 0x88, 0x16, 0xfd, 0x6f, 0xd0, 0x1e, 0x5d, 0xa2, 0x25, 0x9f, 0xe3, 0x1a, 0xd2, 0x83, 0xe6, 0x12,
+ 0xa9, 0x13, 0xba, 0x1f, 0xdb, 0xed, 0xa2, 0x13, 0xb9, 0x86, 0x97, 0xa9, 0xf8, 0xf0, 0x1f, 0x28,
+ 0xe8, 0x35, 0x6c, 0xce, 0x4d, 0xe1, 0xe8, 0xde, 0x9c, 0xe9, 0xdc, 0xb0, 0xaf, 0x95, 0x16, 0xee,
+ 0x47, 0x70, 0x0f, 0x20, 0x1b, 0x99, 0x96, 0x91, 0x16, 0xb5, 0x99, 0x9d, 0xe0, 0xb5, 0x62, 0xec,
+ 0x5e, 0x90, 0x82, 0x6f, 0x04, 0x27, 0xcd, 0x8c, 0xa0, 0x68, 0xe7, 0xb2, 0xf9, 0x57, 0xbb, 0xbf,
+ 0x44, 0x23, 0x36, 0xfe, 0x00, 0xfb, 0xde, 0xc2, 0x59, 0x22, 0x3e, 0xfe, 0x58, 0xdc, 0x97, 0x22,
+ 0x7e, 0xd9, 0xcb, 0x67, 0xe3, 0x9f, 0x1d, 0x15, 0x66, 0xe3, 0x9f, 0x6b, 0xfe, 0x1c, 0x6b, 0x1f,
+ 0x32, 0x41, 0x17, 0x46, 0x85, 0xf0, 0x99, 0xcc, 0xb6, 0x7c, 0xed, 0x4e, 0xcc, 0x4e, 0x90, 0xc5,
+ 0x57, 0x90, 0x8b, 0xf6, 0x3b, 0x54, 0x8c, 0xef, 0x82, 0x02, 0xe9, 0xee, 0xb2, 0x16, 0x29, 0xc0,
+ 0xa2, 0xed, 0x23, 0x04, 0x8b, 0xe9, 0x59, 0x21, 0x58, 0x6c, 0xc7, 0x59, 0x43, 0x0d, 0x80, 0xb0,
+ 0x2d, 0xa0, 0x3b, 0xd1, 0x64, 0xcc, 0x02, 0x69, 0x71, 0x5b, 0x51, 0x98, 0x90, 0x93, 0x43, 0x98,
+ 0x0b, 0x2d, 0x23, 0x84, 0xb9, 0x48, 0xe1, 0x78, 0x0d, 0xfd, 0xa8, 0x40, 0xe9, 0x12, 0x5a, 0x44,
+ 0x65, 0x1f, 0xe1, 0x6a, 0x84, 0xae, 0xed, 0x5d, 0x59, 0x3f, 0x52, 0xf4, 0x77, 0x70, 0x77, 0x19,
+ 0x77, 0xa1, 0xf7, 0xa3, 0xa0, 0x97, 0xf0, 0xad, 0xf6, 0xec, 0x6a, 0xca, 0xe1, 0xf1, 0xdd, 0x14,
+ 0xff, 0xc7, 0xf0, 0xfc, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x91, 0xfb, 0x20, 0x30, 0x44, 0x11,
+ 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index a405f64e3..0162aabf1 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -201,12 +201,12 @@
"revisionTime": "2017-12-31T12:27:32Z"
},
{
- "checksumSHA1": "+oTuDZhG25e+8+35Tkal+/W/794=",
+ "checksumSHA1": "IJSb1CErPkBndZV3OsrrMd67Kz8=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
- "revision": "e6d1d41cf719891fbff77ea2ac5f84152a5da02b",
- "revisionTime": "2018-01-25T16:51:00Z",
- "version": "v0.82.0",
- "versionExact": "v0.82.0"
+ "revision": "a9d2aa860efeb13a4b2008b4bcf867a48b5207f0",
+ "revisionTime": "2018-01-29T15:58:26Z",
+ "version": "v0.83.0",
+ "versionExact": "v0.83.0"
},
{
"checksumSHA1": "nqWNlnMmVpt628zzvyo6Yv2CX5Q=",