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:
authorAhmad Sherif <me@ahmadsherif.com>2017-12-28 16:18:55 +0300
committerAhmad Sherif <me@ahmadsherif.com>2018-01-04 17:54:50 +0300
commit43bafbc59a487fc8d0a4196bdca4c12e8c195bb8 (patch)
tree523e5c795c15c1a1cdcae8cc8eece131e1f67f2c
parent31c8ac664e83563db72604ed4277ea2e46b16e5e (diff)
Add support for MergedBranches in FindAllBranches RPC
Closes #850
-rw-r--r--CHANGELOG.md5
-rw-r--r--internal/service/ref/refs.go34
-rw-r--r--internal/service/ref/refs_test.go121
-rw-r--r--internal/service/repository/repository.go4
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION2
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go2
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/ref.pb.go157
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go233
-rw-r--r--vendor/vendor.json10
9 files changed, 320 insertions, 248 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a78425b79..1bd62f118 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# Gitaly changelog
+UNRELEASED
+
+- Add support for MergedBranches in FindAllBranches RPC
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/510
+
v0.66.0
- Implement RemoteService.FetchInternalRemote RPC
diff --git a/internal/service/ref/refs.go b/internal/service/ref/refs.go
index d7b6ba8e4..543ff2f57 100644
--- a/internal/service/ref/refs.go
+++ b/internal/service/ref/refs.go
@@ -234,13 +234,37 @@ func (s *server) FindLocalBranches(in *pb.FindLocalBranchesRequest, stream pb.Re
}
func (s *server) FindAllBranches(in *pb.FindAllBranchesRequest, stream pb.RefService_FindAllBranchesServer) error {
+ args := []string{
+ // %00 inserts the null character into the output (see for-each-ref docs)
+ "--format=" + strings.Join(localBranchFormatFields, "%00"),
+ }
+
+ var patterns []string
+
+ if in.MergedOnly {
+ defaultBranchName, err := DefaultBranchName(stream.Context(), in.Repository)
+ if err != nil {
+ if _, ok := status.FromError(err); ok {
+ return err
+ }
+ return grpc.Errorf(codes.Internal, err.Error())
+ }
+
+ args = append(args, fmt.Sprintf("--merged=%s", string(defaultBranchName)))
+
+ if len(in.MergedBranches) > 0 {
+ for _, mergedBranch := range in.MergedBranches {
+ patterns = append(patterns, string(mergedBranch))
+ }
+ } else {
+ patterns = append(patterns, "refs/heads", "refs/remotes")
+ }
+ }
+
opts := &findRefsOpts{
- cmdArgs: []string{
- // %00 inserts the null character into the output (see for-each-ref docs)
- "--format=" + strings.Join(localBranchFormatFields, "%00"),
- },
+ cmdArgs: args,
}
writer := newFindAllBranchesWriter(stream)
- return findRefs(stream.Context(), writer, in.Repository, []string{"refs/heads", "refs/remotes"}, opts)
+ return findRefs(stream.Context(), writer, in.Repository, patterns, opts)
}
diff --git a/internal/service/ref/refs_test.go b/internal/service/ref/refs_test.go
index 26efbccab..bedec84ff 100644
--- a/internal/service/ref/refs_test.go
+++ b/internal/service/ref/refs_test.go
@@ -5,11 +5,13 @@ import (
"fmt"
"io"
"io/ioutil"
+ "strings"
"testing"
"github.com/golang/protobuf/ptypes/timestamp"
"github.com/stretchr/testify/require"
pb "gitlab.com/gitlab-org/gitaly-proto/go"
+ "gitlab.com/gitlab-org/gitaly/internal/git/log"
"gitlab.com/gitlab-org/gitaly/internal/testhelper"
"golang.org/x/net/context"
"google.golang.org/grpc"
@@ -752,17 +754,7 @@ func TestSuccessfulFindAllBranchesRequest(t *testing.T) {
t.Fatal(err)
}
- var branches []*pb.FindAllBranchesResponse_Branch
- for {
- r, err := c.Recv()
- if err == io.EOF {
- break
- }
- if err != nil {
- t.Fatal(err)
- }
- branches = append(branches, r.GetBranches()...)
- }
+ branches := readFindAllBranchesResponsesFromClient(t, c)
// It contains local branches
for name, target := range localBranches {
@@ -777,6 +769,99 @@ func TestSuccessfulFindAllBranchesRequest(t *testing.T) {
assertContainsBranch(t, branches, remoteBranch)
}
+func TestSuccessfulFindAllBranchesRequestWithMergedBranches(t *testing.T) {
+ server, serverSocketPath := runRefServiceServer(t)
+ defer server.Stop()
+
+ testRepo, testRepoPath, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ client, conn := newRefServiceClient(t, serverSocketPath)
+ defer conn.Close()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ localRefs := testhelper.MustRunCommand(t, nil, "git", "-C", testRepoPath, "for-each-ref", "--format=%(refname:strip=2)", "refs/heads")
+ for _, ref := range strings.Split(string(localRefs), "\n") {
+ ref = strings.TrimSpace(ref)
+ if _, ok := localBranches["refs/heads/"+ref]; ok || ref == "master" || ref == "" {
+ continue
+ }
+ testhelper.MustRunCommand(t, nil, "git", "-C", testRepoPath, "branch", "-D", ref)
+ }
+
+ expectedRefs := []string{"refs/heads/100%branch", "refs/heads/improve/awesome", "refs/heads/'test'"}
+
+ var expectedBranches []*pb.FindAllBranchesResponse_Branch
+ for _, name := range expectedRefs {
+ target, ok := localBranches[name]
+ require.True(t, ok)
+
+ branch := &pb.FindAllBranchesResponse_Branch{
+ Name: []byte(name),
+ Target: target,
+ }
+ expectedBranches = append(expectedBranches, branch)
+ }
+
+ masterCommit, err := log.GetCommit(ctx, testRepo, "master", "")
+ require.NoError(t, err)
+ expectedBranches = append(expectedBranches, &pb.FindAllBranchesResponse_Branch{
+ Name: []byte("refs/heads/master"),
+ Target: masterCommit,
+ })
+
+ testCases := []struct {
+ desc string
+ request *pb.FindAllBranchesRequest
+ expectedBranches []*pb.FindAllBranchesResponse_Branch
+ }{
+ {
+ desc: "all merged branches",
+ request: &pb.FindAllBranchesRequest{
+ Repository: testRepo,
+ MergedOnly: true,
+ },
+ expectedBranches: expectedBranches,
+ },
+ {
+ desc: "all merged from a list of branches",
+ request: &pb.FindAllBranchesRequest{
+ Repository: testRepo,
+ MergedOnly: true,
+ MergedBranches: [][]byte{
+ []byte("refs/heads/100%branch"),
+ []byte("refs/heads/improve/awesome"),
+ []byte("refs/heads/gitaly-stuff"),
+ },
+ },
+ expectedBranches: expectedBranches[:2],
+ },
+ }
+
+ for _, testCase := range testCases {
+ t.Run(testCase.desc, func(t *testing.T) {
+ c, err := client.FindAllBranches(ctx, testCase.request)
+ require.NoError(t, err)
+
+ branches := readFindAllBranchesResponsesFromClient(t, c)
+ require.Len(t, branches, len(testCase.expectedBranches))
+
+ for _, branch := range branches {
+ // The GitCommit object returned by GetCommit() above and the one returned in the response
+ // vary a lot. We can't guarantee that master will be fixed at a certain commit so we can't create
+ // a structure for it manually, hence this hack.
+ if string(branch.Name) == "refs/heads/master" {
+ continue
+ }
+
+ assertContainsBranch(t, testCase.expectedBranches, branch)
+ }
+ })
+ }
+}
+
func TestInvalidFindAllBranchesRequest(t *testing.T) {
server, serverSocketPath := runRefServiceServer(t)
defer server.Stop()
@@ -821,3 +906,17 @@ func TestInvalidFindAllBranchesRequest(t *testing.T) {
})
}
}
+
+func readFindAllBranchesResponsesFromClient(t *testing.T, c pb.RefService_FindAllBranchesClient) (branches []*pb.FindAllBranchesResponse_Branch) {
+ for {
+ r, err := c.Recv()
+ if err == io.EOF {
+ break
+ }
+ require.NoError(t, err)
+
+ branches = append(branches, r.GetBranches()...)
+ }
+
+ return
+}
diff --git a/internal/service/repository/repository.go b/internal/service/repository/repository.go
index f6397a8d7..726b04f0b 100644
--- a/internal/service/repository/repository.go
+++ b/internal/service/repository/repository.go
@@ -35,7 +35,3 @@ func (s *server) HasLocalBranches(ctx context.Context, in *pb.HasLocalBranchesRe
return client.HasLocalBranches(clientCtx, in)
}
-
-func (*server) ChangeStorage(ctx context.Context, in *pb.ChangeStorageRequest) (*pb.ChangeStorageResponse, error) {
- return nil, helper.Unimplemented
-}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
index d4f16f060..afed694ee 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
@@ -1 +1 @@
-0.64.0
+0.65.0
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
index 887a8af81..ff27ed27a 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
@@ -158,8 +158,6 @@ It has these top-level messages:
GetArchiveResponse
HasLocalBranchesRequest
HasLocalBranchesResponse
- ChangeStorageRequest
- ChangeStorageResponse
FetchSourceBranchRequest
FetchSourceBranchResponse
FsckRequest
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 b26c1a814..6f9b85938 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
@@ -342,6 +342,11 @@ func (m *FindLocalBranchCommitAuthor) GetDate() *google_protobuf.Timestamp {
type FindAllBranchesRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+ // Only return branches that are merged into root ref
+ MergedOnly bool `protobuf:"varint,2,opt,name=merged_only,json=mergedOnly" json:"merged_only,omitempty"`
+ // If merged_only is true, this is a list of branches from which we
+ // return those merged into the root ref
+ MergedBranches [][]byte `protobuf:"bytes,3,rep,name=merged_branches,json=mergedBranches,proto3" json:"merged_branches,omitempty"`
}
func (m *FindAllBranchesRequest) Reset() { *m = FindAllBranchesRequest{} }
@@ -356,6 +361,20 @@ func (m *FindAllBranchesRequest) GetRepository() *Repository {
return nil
}
+func (m *FindAllBranchesRequest) GetMergedOnly() bool {
+ if m != nil {
+ return m.MergedOnly
+ }
+ return false
+}
+
+func (m *FindAllBranchesRequest) GetMergedBranches() [][]byte {
+ if m != nil {
+ return m.MergedBranches
+ }
+ return nil
+}
+
type FindAllBranchesResponse struct {
Branches []*FindAllBranchesResponse_Branch `protobuf:"bytes,1,rep,name=branches" json:"branches,omitempty"`
}
@@ -1243,72 +1262,74 @@ var _RefService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("ref.proto", fileDescriptor8) }
var fileDescriptor8 = []byte{
- // 1064 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdd, 0x72, 0x22, 0x45,
- 0x14, 0xce, 0x90, 0x64, 0x36, 0x39, 0x60, 0x32, 0xe9, 0x60, 0x96, 0x0c, 0xeb, 0x92, 0x6d, 0xdd,
- 0x35, 0xa9, 0xb2, 0x26, 0x16, 0x5b, 0x7a, 0xa3, 0x17, 0x12, 0xc0, 0x0d, 0x6e, 0x24, 0xa9, 0x06,
- 0xd7, 0x54, 0xa9, 0x35, 0x35, 0x40, 0x0f, 0x8c, 0x05, 0x0c, 0xce, 0x34, 0xbb, 0xc9, 0x85, 0xbe,
- 0x80, 0xef, 0xe1, 0xab, 0x78, 0xe1, 0x73, 0xf8, 0x1e, 0x16, 0xdd, 0x3d, 0x7f, 0x30, 0xb0, 0x96,
- 0xb8, 0x57, 0x33, 0x7d, 0xfa, 0x9c, 0xaf, 0xcf, 0x5f, 0x7f, 0x7d, 0x60, 0xd7, 0xa3, 0xb6, 0x31,
- 0xf1, 0x5c, 0xe6, 0x22, 0xb5, 0xef, 0x30, 0x6b, 0x78, 0xaf, 0xe7, 0xfc, 0x81, 0xe5, 0xd1, 0x9e,
- 0x90, 0xea, 0xa5, 0xbe, 0xeb, 0xf6, 0x87, 0xf4, 0x9c, 0xaf, 0x3a, 0x53, 0xfb, 0x9c, 0x39, 0x23,
- 0xea, 0x33, 0x6b, 0x34, 0x11, 0x0a, 0x98, 0xc0, 0xa3, 0xaf, 0x9d, 0x71, 0xaf, 0x46, 0x6d, 0x6b,
- 0x3a, 0x64, 0x17, 0x9e, 0x35, 0xee, 0x0e, 0x9a, 0xd6, 0x88, 0x12, 0xfa, 0xcb, 0x94, 0xfa, 0x0c,
- 0x95, 0x01, 0x3c, 0x3a, 0x71, 0x7d, 0x87, 0xb9, 0xde, 0x7d, 0x41, 0x39, 0x51, 0x4e, 0xb3, 0x65,
- 0x64, 0x88, 0xb3, 0x0c, 0x12, 0xee, 0x90, 0x98, 0x16, 0x7e, 0x0e, 0x1f, 0x2c, 0xc1, 0xf4, 0x27,
- 0xee, 0xd8, 0xa7, 0x08, 0xc1, 0xd6, 0xd8, 0x1a, 0x51, 0x0e, 0x97, 0x23, 0xfc, 0x1f, 0x5f, 0xc3,
- 0xf1, 0xcc, 0xa8, 0x32, 0x1c, 0x46, 0x06, 0xfe, 0x3a, 0x5e, 0x94, 0x41, 0x4f, 0x03, 0x94, 0x2e,
- 0xe4, 0x61, 0x7b, 0x76, 0xac, 0x5f, 0x50, 0x4e, 0x36, 0x4f, 0x73, 0x44, 0x2c, 0xf0, 0x15, 0x1c,
- 0x49, 0x9b, 0xb6, 0xd5, 0x5f, 0xdb, 0x83, 0x73, 0x78, 0xb8, 0x80, 0xb6, 0xf2, 0xf8, 0x5f, 0x01,
- 0xcd, 0x0c, 0x08, 0xb5, 0xd7, 0x2c, 0x01, 0x2a, 0xc2, 0x6e, 0xd7, 0x1d, 0x8d, 0x1c, 0x66, 0x3a,
- 0xbd, 0x42, 0xe6, 0x44, 0x39, 0xdd, 0x25, 0x3b, 0x42, 0xd0, 0xe8, 0xa1, 0x23, 0x50, 0x27, 0x1e,
- 0xb5, 0x9d, 0xbb, 0xc2, 0x26, 0x2f, 0x80, 0x5c, 0xe1, 0x33, 0x38, 0x4c, 0x1c, 0xbf, 0xa2, 0x5a,
- 0x7f, 0x2a, 0x50, 0x98, 0xe9, 0x5e, 0xb9, 0x5d, 0x4b, 0xe6, 0x77, 0xad, 0x5c, 0xa1, 0xaf, 0xe0,
- 0x81, 0xef, 0x7a, 0xcc, 0xec, 0xdc, 0x73, 0x77, 0xf7, 0xca, 0x1f, 0x07, 0x06, 0xcb, 0x8e, 0x31,
- 0x5a, 0xae, 0xc7, 0x2e, 0xee, 0x89, 0xea, 0xf3, 0x2f, 0xfe, 0x0c, 0x54, 0x21, 0x41, 0x3b, 0xb0,
- 0xd5, 0xac, 0x7c, 0x5b, 0xd7, 0x36, 0xd0, 0x3e, 0x64, 0xbf, 0xbb, 0xa9, 0x55, 0xda, 0xf5, 0x9a,
- 0x59, 0x69, 0x55, 0x35, 0x05, 0x69, 0x90, 0x0b, 0x04, 0xb5, 0x7a, 0xab, 0xaa, 0x65, 0xf0, 0xad,
- 0xe8, 0xbb, 0xb9, 0x13, 0x64, 0xe8, 0x5f, 0xc0, 0x4e, 0x47, 0xca, 0x78, 0xa5, 0xb2, 0xe5, 0xd2,
- 0x12, 0xb7, 0x02, 0x13, 0x12, 0x1a, 0xe0, 0xdf, 0x33, 0xa2, 0xfe, 0x29, 0x5a, 0x69, 0x39, 0x5d,
- 0x5d, 0xb3, 0xa7, 0xb0, 0x27, 0x37, 0xfd, 0x69, 0xe7, 0x67, 0xda, 0x65, 0xb2, 0x76, 0xef, 0x09,
- 0x69, 0x4b, 0x08, 0xd1, 0x25, 0x48, 0x81, 0x69, 0x4d, 0xd9, 0xc0, 0xf5, 0x0a, 0x5b, 0x3c, 0xfb,
- 0x1f, 0x2e, 0xf1, 0xba, 0xca, 0x75, 0x2b, 0x5c, 0x95, 0xe4, 0xba, 0xb1, 0x15, 0x6a, 0x82, 0x26,
- 0x91, 0xc4, 0x87, 0x51, 0xaf, 0xb0, 0xfd, 0xef, 0xc1, 0xf6, 0x85, 0x55, 0x35, 0xb0, 0xc5, 0x6f,
- 0xa0, 0xb8, 0x42, 0x3f, 0x35, 0x21, 0x79, 0xd8, 0xa6, 0x23, 0xcb, 0x19, 0xf2, 0x64, 0xe4, 0x88,
- 0x58, 0x20, 0x03, 0xb6, 0x7a, 0x16, 0xa3, 0x3c, 0xfe, 0x6c, 0x59, 0x37, 0x04, 0xc3, 0x19, 0x01,
- 0xc3, 0x19, 0xed, 0x80, 0xe1, 0x08, 0xd7, 0x8b, 0xdd, 0xe9, 0xff, 0xa1, 0x4f, 0xf1, 0x1f, 0x4a,
- 0x78, 0xa9, 0x17, 0xba, 0xe5, 0x62, 0xa1, 0x5b, 0x9e, 0xc5, 0x53, 0x95, 0x62, 0x62, 0xc8, 0xb6,
- 0x08, 0xed, 0xf4, 0x17, 0xa0, 0x0a, 0x59, 0x6a, 0x46, 0xce, 0x40, 0x65, 0x96, 0xd7, 0xa7, 0x8c,
- 0xa7, 0x24, 0x5b, 0x3e, 0x08, 0xf0, 0x5f, 0x04, 0xa9, 0x26, 0x52, 0x01, 0x5f, 0x0a, 0x2e, 0x11,
- 0xe4, 0xb3, 0x56, 0xc8, 0x9f, 0x0b, 0x5a, 0x08, 0x91, 0x64, 0xb4, 0x25, 0xd8, 0x62, 0x56, 0x3f,
- 0x88, 0x34, 0x1b, 0x80, 0xb4, 0xad, 0x3e, 0xe1, 0x1b, 0xf8, 0x16, 0x34, 0x42, 0xed, 0xfa, 0x9d,
- 0xe3, 0xb3, 0xb5, 0xa8, 0x41, 0x83, 0x4d, 0x8f, 0xda, 0xb2, 0x09, 0x66, 0xbf, 0xf8, 0x0c, 0x0e,
- 0x62, 0xc8, 0x11, 0xa5, 0xbe, 0xb6, 0x86, 0x53, 0x91, 0xb0, 0x1d, 0x22, 0x16, 0xf8, 0x37, 0x38,
- 0xac, 0x7a, 0xd4, 0x62, 0x34, 0xb8, 0x80, 0xff, 0xdd, 0x8f, 0xa0, 0x20, 0x99, 0x58, 0x41, 0x4a,
- 0x90, 0xf5, 0x99, 0xe5, 0x31, 0x73, 0xe2, 0x3a, 0xe3, 0xe0, 0x4e, 0x02, 0x17, 0xdd, 0xcc, 0x24,
- 0xf8, 0x2f, 0x05, 0xf2, 0x49, 0x07, 0x42, 0x6a, 0x51, 0x7d, 0x66, 0xb1, 0xa9, 0xcf, 0x4f, 0xdf,
- 0x8b, 0x6e, 0x55, 0x9a, 0xb6, 0xd1, 0xe2, 0xaa, 0x44, 0x9a, 0xa0, 0x67, 0xa0, 0x8a, 0x8e, 0x91,
- 0x7d, 0xb0, 0x17, 0x18, 0x4b, 0x33, 0xb9, 0x8b, 0x9b, 0xa0, 0x0a, 0x4b, 0xa4, 0x42, 0xe6, 0xfa,
- 0xa5, 0xb6, 0x81, 0xf6, 0x00, 0xea, 0x84, 0x98, 0xf5, 0xdb, 0x46, 0xab, 0xdd, 0xd2, 0x94, 0x19,
- 0x43, 0xce, 0xd6, 0x8d, 0xe6, 0xab, 0xca, 0x55, 0xa3, 0xa6, 0x65, 0x50, 0x11, 0x1e, 0xc6, 0x04,
- 0x66, 0xab, 0x5d, 0x21, 0x6d, 0xf3, 0xe6, 0xba, 0xd1, 0x6c, 0x6b, 0x9b, 0xf8, 0x27, 0x38, 0xac,
- 0xd1, 0x21, 0x7d, 0x47, 0xd9, 0xc4, 0x47, 0x90, 0x4f, 0xc2, 0x8b, 0xe8, 0xf1, 0x0f, 0x70, 0x30,
- 0xeb, 0xc0, 0x77, 0x73, 0xe8, 0x97, 0xe2, 0xa2, 0xcc, 0x95, 0x27, 0xca, 0xb0, 0xb2, 0x32, 0xc3,
- 0x53, 0x38, 0x10, 0x2e, 0x13, 0x6a, 0xaf, 0xd5, 0xe5, 0x9f, 0x00, 0xa2, 0x77, 0x5d, 0x3a, 0x61,
- 0xe6, 0x1b, 0x87, 0x0d, 0x4c, 0xf9, 0x40, 0x67, 0xf8, 0x78, 0xa0, 0x89, 0x9d, 0xef, 0x1d, 0x36,
- 0xb8, 0x11, 0x4f, 0x75, 0x1e, 0x50, 0xfc, 0x58, 0xe1, 0x74, 0xf9, 0xef, 0x07, 0x00, 0x84, 0xda,
- 0x2d, 0xea, 0xbd, 0x76, 0xba, 0x14, 0xd9, 0xf0, 0x7e, 0xea, 0x1c, 0x86, 0x3e, 0x8a, 0xd3, 0xd2,
- 0xb2, 0xd1, 0x4f, 0x7f, 0xfa, 0x16, 0x2d, 0x59, 0x9c, 0x0d, 0x64, 0x86, 0x54, 0x13, 0x9b, 0xb4,
- 0xd0, 0x93, 0x54, 0xee, 0x8b, 0x0f, 0x55, 0x3a, 0x5e, 0xa5, 0x12, 0xc0, 0x7f, 0xaa, 0xa0, 0x57,
- 0xb0, 0x3f, 0x37, 0x48, 0xa1, 0xc7, 0x73, 0xa6, 0x73, 0xf3, 0x9a, 0x5e, 0x5a, 0xba, 0x1f, 0xc3,
- 0xbd, 0x84, 0x6c, 0x6c, 0xe0, 0x41, 0x7a, 0xdc, 0x26, 0x39, 0x84, 0xe9, 0xc5, 0xd4, 0xbd, 0x30,
- 0x05, 0x3f, 0x8a, 0x0e, 0x4d, 0x4c, 0x11, 0xe8, 0xe4, 0x6d, 0x23, 0x8c, 0xfe, 0x64, 0x85, 0x46,
- 0x6a, 0xfc, 0x21, 0xf6, 0xe3, 0xa5, 0x2f, 0x4b, 0x7a, 0xfc, 0xa9, 0xb8, 0xdf, 0x88, 0xf8, 0x25,
- 0xb3, 0x27, 0xe3, 0x4f, 0x3e, 0x1c, 0xc9, 0xf8, 0xe7, 0x9e, 0x02, 0x8e, 0x75, 0x01, 0xbb, 0x21,
- 0x27, 0xa3, 0x42, 0xd4, 0xec, 0xc9, 0x07, 0x40, 0x3f, 0x4e, 0xd9, 0x09, 0xb3, 0xf8, 0x12, 0x72,
- 0x71, 0xf6, 0x43, 0xc5, 0x74, 0x4e, 0x14, 0x48, 0x8f, 0x56, 0x11, 0xa6, 0x00, 0x8b, 0x93, 0x49,
- 0x04, 0x96, 0xc2, 0x60, 0x11, 0x58, 0x2a, 0xff, 0x6c, 0xa0, 0x3a, 0x40, 0x44, 0x12, 0xe8, 0x38,
- 0x9e, 0x8c, 0x24, 0x90, 0x9e, 0xb6, 0x15, 0x87, 0x89, 0xae, 0x6d, 0x04, 0xb3, 0xc0, 0x20, 0x11,
- 0xcc, 0xe2, 0x2d, 0xc7, 0x1b, 0x1d, 0x95, 0x0f, 0x3b, 0xcf, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff,
- 0x6b, 0xa1, 0x49, 0x49, 0xff, 0x0d, 0x00, 0x00,
+ // 1102 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdd, 0x72, 0xdb, 0x44,
+ 0x14, 0x8e, 0x9c, 0x54, 0x4d, 0x8e, 0x8d, 0xa3, 0x6c, 0x42, 0xea, 0x28, 0xa5, 0x4e, 0x17, 0xda,
+ 0x26, 0x33, 0x8c, 0xc2, 0xb8, 0x03, 0x37, 0x70, 0x81, 0x13, 0x9b, 0x26, 0x34, 0x38, 0x99, 0xb5,
+ 0x29, 0x99, 0x01, 0x46, 0x23, 0xdb, 0x2b, 0x5b, 0x8c, 0x6c, 0x19, 0x69, 0xdd, 0xc6, 0x17, 0xf0,
+ 0x02, 0xdc, 0xf3, 0x08, 0xbc, 0x0a, 0x17, 0x3c, 0x07, 0xef, 0xc1, 0x78, 0x77, 0xf5, 0x67, 0xcb,
+ 0x2e, 0x83, 0xe9, 0x95, 0xb4, 0x67, 0xcf, 0xf9, 0xf6, 0xfc, 0xed, 0xb7, 0x07, 0xb6, 0x7c, 0x6a,
+ 0x1b, 0x23, 0xdf, 0x63, 0x1e, 0x52, 0x7b, 0x0e, 0xb3, 0xdc, 0x89, 0x5e, 0x08, 0xfa, 0x96, 0x4f,
+ 0xbb, 0x42, 0xaa, 0x97, 0x7b, 0x9e, 0xd7, 0x73, 0xe9, 0x29, 0x5f, 0xb5, 0xc7, 0xf6, 0x29, 0x73,
+ 0x06, 0x34, 0x60, 0xd6, 0x60, 0x24, 0x14, 0x30, 0x81, 0x87, 0x5f, 0x39, 0xc3, 0x6e, 0x8d, 0xda,
+ 0xd6, 0xd8, 0x65, 0x67, 0xbe, 0x35, 0xec, 0xf4, 0x1b, 0xd6, 0x80, 0x12, 0xfa, 0xf3, 0x98, 0x06,
+ 0x0c, 0x55, 0x00, 0x7c, 0x3a, 0xf2, 0x02, 0x87, 0x79, 0xfe, 0xa4, 0xa4, 0x1c, 0x29, 0xc7, 0xf9,
+ 0x0a, 0x32, 0xc4, 0x59, 0x06, 0x89, 0x76, 0x48, 0x42, 0x0b, 0x3f, 0x87, 0x0f, 0x16, 0x60, 0x06,
+ 0x23, 0x6f, 0x18, 0x50, 0x84, 0x60, 0x63, 0x68, 0x0d, 0x28, 0x87, 0x2b, 0x10, 0xfe, 0x8f, 0xaf,
+ 0xe1, 0x60, 0x6a, 0x54, 0x75, 0xdd, 0xd8, 0x20, 0x58, 0xc5, 0x8b, 0x0a, 0xe8, 0x59, 0x80, 0xd2,
+ 0x85, 0x3d, 0xb8, 0x37, 0x3d, 0x36, 0x28, 0x29, 0x47, 0xeb, 0xc7, 0x05, 0x22, 0x16, 0xf8, 0x0a,
+ 0xf6, 0xa5, 0x4d, 0xcb, 0xea, 0xad, 0xec, 0xc1, 0x29, 0x3c, 0x98, 0x43, 0x5b, 0x7a, 0xfc, 0x2f,
+ 0x80, 0xa6, 0x06, 0x84, 0xda, 0x2b, 0x96, 0x00, 0x1d, 0xc2, 0x56, 0xc7, 0x1b, 0x0c, 0x1c, 0x66,
+ 0x3a, 0xdd, 0x52, 0xee, 0x48, 0x39, 0xde, 0x22, 0x9b, 0x42, 0x70, 0xd9, 0x45, 0xfb, 0xa0, 0x8e,
+ 0x7c, 0x6a, 0x3b, 0x77, 0xa5, 0x75, 0x5e, 0x00, 0xb9, 0xc2, 0x27, 0xb0, 0x9b, 0x3a, 0x7e, 0x49,
+ 0xb5, 0xfe, 0x54, 0xa0, 0x34, 0xd5, 0xbd, 0xf2, 0x3a, 0x96, 0xcc, 0xef, 0x4a, 0xb9, 0x42, 0x5f,
+ 0xc2, 0xfd, 0xc0, 0xf3, 0x99, 0xd9, 0x9e, 0x70, 0x77, 0x8b, 0x95, 0x67, 0xa1, 0xc1, 0xa2, 0x63,
+ 0x8c, 0xa6, 0xe7, 0xb3, 0xb3, 0x09, 0x51, 0x03, 0xfe, 0xc5, 0x9f, 0x82, 0x2a, 0x24, 0x68, 0x13,
+ 0x36, 0x1a, 0xd5, 0x6f, 0xea, 0xda, 0x1a, 0xda, 0x86, 0xfc, 0xb7, 0x37, 0xb5, 0x6a, 0xab, 0x5e,
+ 0x33, 0xab, 0xcd, 0x73, 0x4d, 0x41, 0x1a, 0x14, 0x42, 0x41, 0xad, 0xde, 0x3c, 0xd7, 0x72, 0xf8,
+ 0x56, 0xf4, 0xdd, 0xcc, 0x09, 0x32, 0xf4, 0xcf, 0x61, 0xb3, 0x2d, 0x65, 0xbc, 0x52, 0xf9, 0x4a,
+ 0x79, 0x81, 0x5b, 0xa1, 0x09, 0x89, 0x0c, 0xf0, 0x6f, 0x39, 0x51, 0xff, 0x0c, 0xad, 0xac, 0x9c,
+ 0x2e, 0xaf, 0xd9, 0x13, 0x28, 0xca, 0xcd, 0x60, 0xdc, 0xfe, 0x89, 0x76, 0x98, 0xac, 0xdd, 0x7b,
+ 0x42, 0xda, 0x14, 0x42, 0x74, 0x01, 0x52, 0x60, 0x5a, 0x63, 0xd6, 0xf7, 0xfc, 0xd2, 0x06, 0xcf,
+ 0xfe, 0x87, 0x0b, 0xbc, 0x3e, 0xe7, 0xba, 0x55, 0xae, 0x4a, 0x0a, 0x9d, 0xc4, 0x0a, 0x35, 0x40,
+ 0x93, 0x48, 0xe2, 0xc3, 0xa8, 0x5f, 0xba, 0xf7, 0xef, 0xc1, 0xb6, 0x85, 0xd5, 0x79, 0x68, 0x8b,
+ 0xdf, 0xc0, 0xe1, 0x12, 0xfd, 0xcc, 0x84, 0xec, 0xc1, 0x3d, 0x3a, 0xb0, 0x1c, 0x97, 0x27, 0xa3,
+ 0x40, 0xc4, 0x02, 0x19, 0xb0, 0xd1, 0xb5, 0x18, 0xe5, 0xf1, 0xe7, 0x2b, 0xba, 0x21, 0x18, 0xce,
+ 0x08, 0x19, 0xce, 0x68, 0x85, 0x0c, 0x47, 0xb8, 0x1e, 0xfe, 0x5d, 0x89, 0x2e, 0xf5, 0xff, 0xd1,
+ 0xa8, 0x65, 0xc8, 0x0f, 0xa8, 0xdf, 0xa3, 0x5d, 0xd3, 0x1b, 0xba, 0xa2, 0x59, 0x37, 0x09, 0x08,
+ 0xd1, 0xf5, 0xd0, 0x9d, 0xa0, 0x67, 0xb0, 0x2d, 0x15, 0xa2, 0xd6, 0x59, 0xe7, 0x97, 0xbc, 0x28,
+ 0xc4, 0xa1, 0x13, 0xf8, 0x0f, 0x25, 0xe2, 0x87, 0xb9, 0xc6, 0x3b, 0x9b, 0x6b, 0xbc, 0xa7, 0xc9,
+ 0xac, 0x67, 0x98, 0x18, 0xb2, 0xc3, 0x22, 0x3b, 0xfd, 0x05, 0xa8, 0x42, 0x96, 0x99, 0xdc, 0x13,
+ 0x50, 0x99, 0xe5, 0xf7, 0x28, 0xe3, 0x21, 0xe4, 0x2b, 0x3b, 0x21, 0xfe, 0x8b, 0xb0, 0x6a, 0x44,
+ 0x2a, 0xe0, 0x0b, 0x41, 0x4b, 0x82, 0xc7, 0x56, 0x62, 0xc4, 0xcf, 0x04, 0xc3, 0x44, 0x48, 0x32,
+ 0xda, 0x32, 0x6c, 0x30, 0xab, 0x17, 0x46, 0x9a, 0x0f, 0x41, 0x5a, 0x56, 0x8f, 0xf0, 0x0d, 0x7c,
+ 0x0b, 0x1a, 0xa1, 0x76, 0xfd, 0xce, 0x09, 0xd8, 0x4a, 0xc5, 0xd3, 0x60, 0xdd, 0xa7, 0xb6, 0xec,
+ 0xa7, 0xe9, 0x2f, 0x3e, 0x81, 0x9d, 0x04, 0x72, 0xcc, 0xce, 0xaf, 0x2d, 0x77, 0x2c, 0x12, 0xb6,
+ 0x49, 0xc4, 0x02, 0xff, 0x0a, 0xbb, 0xe7, 0x3e, 0xb5, 0x18, 0x0d, 0xef, 0xf2, 0x7f, 0xf7, 0x23,
+ 0x2c, 0x48, 0x2e, 0x51, 0x90, 0x32, 0xe4, 0x03, 0x66, 0xf9, 0xcc, 0x1c, 0x79, 0xce, 0x30, 0xbc,
+ 0xde, 0xc0, 0x45, 0x37, 0x53, 0x09, 0xfe, 0x4b, 0x81, 0xbd, 0xb4, 0x03, 0x11, 0x4b, 0xa9, 0x01,
+ 0xb3, 0xd8, 0x38, 0xe0, 0xa7, 0x17, 0xe3, 0x0b, 0x9a, 0xa5, 0x6d, 0x34, 0xb9, 0x2a, 0x91, 0x26,
+ 0xe8, 0x29, 0xa8, 0xa2, 0x63, 0x64, 0x1f, 0x14, 0x43, 0x63, 0x69, 0x26, 0x77, 0x71, 0x03, 0x54,
+ 0x61, 0x89, 0x54, 0xc8, 0x5d, 0xbf, 0xd4, 0xd6, 0x50, 0x11, 0xa0, 0x4e, 0x88, 0x59, 0xbf, 0xbd,
+ 0x6c, 0xb6, 0x9a, 0x9a, 0x32, 0x25, 0xdb, 0xe9, 0xfa, 0xb2, 0xf1, 0xaa, 0x7a, 0x75, 0x59, 0xd3,
+ 0x72, 0xe8, 0x10, 0x1e, 0x24, 0x04, 0x66, 0xb3, 0x55, 0x25, 0x2d, 0xf3, 0xe6, 0xfa, 0xb2, 0xd1,
+ 0xd2, 0xd6, 0xf1, 0x8f, 0xb0, 0x5b, 0xa3, 0x2e, 0x7d, 0x47, 0xd9, 0xc4, 0xfb, 0xb0, 0x97, 0x86,
+ 0x17, 0xd1, 0xe3, 0xef, 0x61, 0x67, 0xda, 0x81, 0xef, 0xe6, 0xd0, 0x2f, 0xc4, 0x45, 0x99, 0x29,
+ 0x4f, 0x9c, 0x61, 0x65, 0x69, 0x86, 0xc7, 0xb0, 0x23, 0x5c, 0x26, 0xd4, 0x5e, 0xa9, 0xcb, 0x3f,
+ 0x06, 0x44, 0xef, 0x3a, 0x74, 0xc4, 0xcc, 0x37, 0x0e, 0xeb, 0x9b, 0xf2, 0xad, 0xcf, 0x71, 0x12,
+ 0xd2, 0xc4, 0xce, 0x77, 0x0e, 0xeb, 0xdf, 0x88, 0x57, 0x7f, 0x0f, 0x50, 0xf2, 0x58, 0xe1, 0x74,
+ 0xe5, 0xef, 0xfb, 0x00, 0x84, 0xda, 0x4d, 0xea, 0xbf, 0x76, 0x3a, 0x14, 0xd9, 0xf0, 0x7e, 0xe6,
+ 0x48, 0x87, 0x3e, 0x4a, 0xd2, 0xd2, 0xa2, 0x29, 0x52, 0x7f, 0xf2, 0x16, 0x2d, 0x59, 0x9c, 0x35,
+ 0x64, 0x46, 0x54, 0x93, 0x18, 0xda, 0xd0, 0xe3, 0x4c, 0xee, 0x4b, 0xce, 0x67, 0x3a, 0x5e, 0xa6,
+ 0x12, 0xc2, 0x7f, 0xa2, 0xa0, 0x57, 0xb0, 0x3d, 0x33, 0x93, 0xa1, 0x47, 0x33, 0xa6, 0x33, 0xa3,
+ 0x9f, 0x5e, 0x5e, 0xb8, 0x9f, 0xc0, 0xbd, 0x80, 0x7c, 0x62, 0x76, 0x42, 0x7a, 0xd2, 0x26, 0x3d,
+ 0xcf, 0xe9, 0x87, 0x99, 0x7b, 0x51, 0x0a, 0x7e, 0x10, 0x1d, 0x9a, 0x1a, 0x48, 0xd0, 0xd1, 0xdb,
+ 0xa6, 0x21, 0xfd, 0xf1, 0x12, 0x8d, 0xcc, 0xf8, 0x23, 0xec, 0x47, 0x0b, 0x5f, 0x96, 0xec, 0xf8,
+ 0x33, 0x71, 0xbf, 0x16, 0xf1, 0x4b, 0x66, 0x4f, 0xc7, 0x9f, 0x7e, 0x38, 0xd2, 0xf1, 0xcf, 0x3c,
+ 0x05, 0x1c, 0xeb, 0x0c, 0xb6, 0x22, 0x4e, 0x46, 0xa5, 0xb8, 0xd9, 0xd3, 0x0f, 0x80, 0x7e, 0x90,
+ 0xb1, 0x13, 0x65, 0xf1, 0x25, 0x14, 0x92, 0xec, 0x87, 0x0e, 0xb3, 0x39, 0x51, 0x20, 0x3d, 0x5c,
+ 0x46, 0x98, 0x02, 0x2c, 0x49, 0x26, 0x31, 0x58, 0x06, 0x83, 0xc5, 0x60, 0x99, 0xfc, 0xb3, 0x86,
+ 0xea, 0x00, 0x31, 0x49, 0xa0, 0x83, 0x64, 0x32, 0xd2, 0x40, 0x7a, 0xd6, 0x56, 0x12, 0x26, 0xbe,
+ 0xb6, 0x31, 0xcc, 0x1c, 0x83, 0xc4, 0x30, 0xf3, 0xb7, 0x1c, 0xaf, 0xb5, 0x55, 0x3e, 0x37, 0x3d,
+ 0xff, 0x27, 0x00, 0x00, 0xff, 0xff, 0xfc, 0x59, 0x3a, 0x12, 0x4a, 0x0e, 0x00, 0x00,
}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
index f5745808d..da805e2c3 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
@@ -447,38 +447,6 @@ func (m *HasLocalBranchesResponse) GetValue() bool {
return false
}
-type ChangeStorageRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- NewStorageName string `protobuf:"bytes,2,opt,name=new_storage_name,json=newStorageName" json:"new_storage_name,omitempty"`
-}
-
-func (m *ChangeStorageRequest) Reset() { *m = ChangeStorageRequest{} }
-func (m *ChangeStorageRequest) String() string { return proto.CompactTextString(m) }
-func (*ChangeStorageRequest) ProtoMessage() {}
-func (*ChangeStorageRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{22} }
-
-func (m *ChangeStorageRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *ChangeStorageRequest) GetNewStorageName() string {
- if m != nil {
- return m.NewStorageName
- }
- return ""
-}
-
-type ChangeStorageResponse struct {
-}
-
-func (m *ChangeStorageResponse) Reset() { *m = ChangeStorageResponse{} }
-func (m *ChangeStorageResponse) String() string { return proto.CompactTextString(m) }
-func (*ChangeStorageResponse) ProtoMessage() {}
-func (*ChangeStorageResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{23} }
-
type FetchSourceBranchRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
SourceRepository *Repository `protobuf:"bytes,2,opt,name=source_repository,json=sourceRepository" json:"source_repository,omitempty"`
@@ -489,7 +457,7 @@ type FetchSourceBranchRequest struct {
func (m *FetchSourceBranchRequest) Reset() { *m = FetchSourceBranchRequest{} }
func (m *FetchSourceBranchRequest) String() string { return proto.CompactTextString(m) }
func (*FetchSourceBranchRequest) ProtoMessage() {}
-func (*FetchSourceBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{24} }
+func (*FetchSourceBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{22} }
func (m *FetchSourceBranchRequest) GetRepository() *Repository {
if m != nil {
@@ -526,7 +494,7 @@ type FetchSourceBranchResponse struct {
func (m *FetchSourceBranchResponse) Reset() { *m = FetchSourceBranchResponse{} }
func (m *FetchSourceBranchResponse) String() string { return proto.CompactTextString(m) }
func (*FetchSourceBranchResponse) ProtoMessage() {}
-func (*FetchSourceBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{25} }
+func (*FetchSourceBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{23} }
func (m *FetchSourceBranchResponse) GetResult() bool {
if m != nil {
@@ -542,7 +510,7 @@ type FsckRequest struct {
func (m *FsckRequest) Reset() { *m = FsckRequest{} }
func (m *FsckRequest) String() string { return proto.CompactTextString(m) }
func (*FsckRequest) ProtoMessage() {}
-func (*FsckRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{26} }
+func (*FsckRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{24} }
func (m *FsckRequest) GetRepository() *Repository {
if m != nil {
@@ -558,7 +526,7 @@ type FsckResponse struct {
func (m *FsckResponse) Reset() { *m = FsckResponse{} }
func (m *FsckResponse) String() string { return proto.CompactTextString(m) }
func (*FsckResponse) ProtoMessage() {}
-func (*FsckResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{27} }
+func (*FsckResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{25} }
func (m *FsckResponse) GetError() []byte {
if m != nil {
@@ -577,7 +545,7 @@ type WriteRefRequest struct {
func (m *WriteRefRequest) Reset() { *m = WriteRefRequest{} }
func (m *WriteRefRequest) String() string { return proto.CompactTextString(m) }
func (*WriteRefRequest) ProtoMessage() {}
-func (*WriteRefRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{28} }
+func (*WriteRefRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{26} }
func (m *WriteRefRequest) GetRepository() *Repository {
if m != nil {
@@ -614,7 +582,7 @@ type WriteRefResponse struct {
func (m *WriteRefResponse) Reset() { *m = WriteRefResponse{} }
func (m *WriteRefResponse) String() string { return proto.CompactTextString(m) }
func (*WriteRefResponse) ProtoMessage() {}
-func (*WriteRefResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{29} }
+func (*WriteRefResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{27} }
func (m *WriteRefResponse) GetError() []byte {
if m != nil {
@@ -634,7 +602,7 @@ type FindMergeBaseRequest struct {
func (m *FindMergeBaseRequest) Reset() { *m = FindMergeBaseRequest{} }
func (m *FindMergeBaseRequest) String() string { return proto.CompactTextString(m) }
func (*FindMergeBaseRequest) ProtoMessage() {}
-func (*FindMergeBaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{30} }
+func (*FindMergeBaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{28} }
func (m *FindMergeBaseRequest) GetRepository() *Repository {
if m != nil {
@@ -657,7 +625,7 @@ type FindMergeBaseResponse struct {
func (m *FindMergeBaseResponse) Reset() { *m = FindMergeBaseResponse{} }
func (m *FindMergeBaseResponse) String() string { return proto.CompactTextString(m) }
func (*FindMergeBaseResponse) ProtoMessage() {}
-func (*FindMergeBaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{31} }
+func (*FindMergeBaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{29} }
func (m *FindMergeBaseResponse) GetBase() string {
if m != nil {
@@ -674,7 +642,7 @@ type CreateForkRequest struct {
func (m *CreateForkRequest) Reset() { *m = CreateForkRequest{} }
func (m *CreateForkRequest) String() string { return proto.CompactTextString(m) }
func (*CreateForkRequest) ProtoMessage() {}
-func (*CreateForkRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{32} }
+func (*CreateForkRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{30} }
func (m *CreateForkRequest) GetRepository() *Repository {
if m != nil {
@@ -696,7 +664,7 @@ type CreateForkResponse struct {
func (m *CreateForkResponse) Reset() { *m = CreateForkResponse{} }
func (m *CreateForkResponse) String() string { return proto.CompactTextString(m) }
func (*CreateForkResponse) ProtoMessage() {}
-func (*CreateForkResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{33} }
+func (*CreateForkResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{31} }
func init() {
proto.RegisterType((*RepositoryExistsRequest)(nil), "gitaly.RepositoryExistsRequest")
@@ -721,8 +689,6 @@ func init() {
proto.RegisterType((*GetArchiveResponse)(nil), "gitaly.GetArchiveResponse")
proto.RegisterType((*HasLocalBranchesRequest)(nil), "gitaly.HasLocalBranchesRequest")
proto.RegisterType((*HasLocalBranchesResponse)(nil), "gitaly.HasLocalBranchesResponse")
- proto.RegisterType((*ChangeStorageRequest)(nil), "gitaly.ChangeStorageRequest")
- proto.RegisterType((*ChangeStorageResponse)(nil), "gitaly.ChangeStorageResponse")
proto.RegisterType((*FetchSourceBranchRequest)(nil), "gitaly.FetchSourceBranchRequest")
proto.RegisterType((*FetchSourceBranchResponse)(nil), "gitaly.FetchSourceBranchResponse")
proto.RegisterType((*FsckRequest)(nil), "gitaly.FsckRequest")
@@ -758,7 +724,6 @@ type RepositoryServiceClient interface {
CreateRepository(ctx context.Context, in *CreateRepositoryRequest, opts ...grpc.CallOption) (*CreateRepositoryResponse, error)
GetArchive(ctx context.Context, in *GetArchiveRequest, opts ...grpc.CallOption) (RepositoryService_GetArchiveClient, error)
HasLocalBranches(ctx context.Context, in *HasLocalBranchesRequest, opts ...grpc.CallOption) (*HasLocalBranchesResponse, error)
- ChangeStorage(ctx context.Context, in *ChangeStorageRequest, opts ...grpc.CallOption) (*ChangeStorageResponse, error)
FetchSourceBranch(ctx context.Context, in *FetchSourceBranchRequest, opts ...grpc.CallOption) (*FetchSourceBranchResponse, error)
Fsck(ctx context.Context, in *FsckRequest, opts ...grpc.CallOption) (*FsckResponse, error)
WriteRef(ctx context.Context, in *WriteRefRequest, opts ...grpc.CallOption) (*WriteRefResponse, error)
@@ -896,15 +861,6 @@ func (c *repositoryServiceClient) HasLocalBranches(ctx context.Context, in *HasL
return out, nil
}
-func (c *repositoryServiceClient) ChangeStorage(ctx context.Context, in *ChangeStorageRequest, opts ...grpc.CallOption) (*ChangeStorageResponse, error) {
- out := new(ChangeStorageResponse)
- err := grpc.Invoke(ctx, "/gitaly.RepositoryService/ChangeStorage", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
func (c *repositoryServiceClient) FetchSourceBranch(ctx context.Context, in *FetchSourceBranchRequest, opts ...grpc.CallOption) (*FetchSourceBranchResponse, error) {
out := new(FetchSourceBranchResponse)
err := grpc.Invoke(ctx, "/gitaly.RepositoryService/FetchSourceBranch", in, out, c.cc, opts...)
@@ -964,7 +920,6 @@ type RepositoryServiceServer interface {
CreateRepository(context.Context, *CreateRepositoryRequest) (*CreateRepositoryResponse, error)
GetArchive(*GetArchiveRequest, RepositoryService_GetArchiveServer) error
HasLocalBranches(context.Context, *HasLocalBranchesRequest) (*HasLocalBranchesResponse, error)
- ChangeStorage(context.Context, *ChangeStorageRequest) (*ChangeStorageResponse, error)
FetchSourceBranch(context.Context, *FetchSourceBranchRequest) (*FetchSourceBranchResponse, error)
Fsck(context.Context, *FsckRequest) (*FsckResponse, error)
WriteRef(context.Context, *WriteRefRequest) (*WriteRefResponse, error)
@@ -1177,24 +1132,6 @@ func _RepositoryService_HasLocalBranches_Handler(srv interface{}, ctx context.Co
return interceptor(ctx, in, info, handler)
}
-func _RepositoryService_ChangeStorage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(ChangeStorageRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(RepositoryServiceServer).ChangeStorage(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.RepositoryService/ChangeStorage",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(RepositoryServiceServer).ChangeStorage(ctx, req.(*ChangeStorageRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
func _RepositoryService_FetchSourceBranch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(FetchSourceBranchRequest)
if err := dec(in); err != nil {
@@ -1330,10 +1267,6 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
Handler: _RepositoryService_HasLocalBranches_Handler,
},
{
- MethodName: "ChangeStorage",
- Handler: _RepositoryService_ChangeStorage_Handler,
- },
- {
MethodName: "FetchSourceBranch",
Handler: _RepositoryService_FetchSourceBranch_Handler,
},
@@ -1367,79 +1300,75 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor10) }
var fileDescriptor10 = []byte{
- // 1170 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xdd, 0x4e, 0xe3, 0x46,
- 0x14, 0x4e, 0x08, 0x24, 0xe4, 0x90, 0xdd, 0x86, 0xd9, 0xb0, 0x18, 0x03, 0x5d, 0x3a, 0xed, 0x05,
- 0x52, 0x5b, 0xb4, 0x0a, 0x52, 0xd5, 0xbb, 0x15, 0x20, 0x02, 0x68, 0x0b, 0x6a, 0x0d, 0x12, 0x12,
- 0x52, 0x15, 0x4d, 0xcc, 0x24, 0xb1, 0x92, 0xd8, 0xe9, 0xcc, 0x04, 0x36, 0xfb, 0x04, 0xed, 0xf3,
- 0xf5, 0x11, 0x7a, 0x59, 0xa9, 0xcf, 0x50, 0x79, 0x66, 0xe2, 0xb1, 0x63, 0x9b, 0x1b, 0xab, 0xea,
- 0x9d, 0xe7, 0xef, 0x3b, 0xdf, 0x9c, 0x39, 0x3f, 0x9f, 0xc1, 0x62, 0x74, 0x1a, 0x70, 0x4f, 0x04,
- 0x6c, 0xfe, 0x3d, 0xa7, 0xec, 0xc9, 0x73, 0xe9, 0xd1, 0x94, 0x05, 0x22, 0x40, 0xd5, 0x81, 0x27,
- 0xc8, 0x78, 0x6e, 0x37, 0xf8, 0x90, 0x30, 0xfa, 0xa8, 0x66, 0xf1, 0x35, 0x6c, 0x3b, 0xd1, 0x89,
- 0xf3, 0x4f, 0x1e, 0x17, 0xdc, 0xa1, 0xbf, 0xcd, 0x28, 0x17, 0xa8, 0x0d, 0x60, 0xc0, 0xac, 0xf2,
- 0x41, 0xf9, 0x70, 0xa3, 0x8d, 0x8e, 0x14, 0xca, 0x91, 0x39, 0xe4, 0xc4, 0x76, 0xe1, 0x36, 0x58,
- 0x69, 0x38, 0x3e, 0x0d, 0x7c, 0x4e, 0xd1, 0x5b, 0xa8, 0x52, 0x39, 0x23, 0xb1, 0xd6, 0x1d, 0x3d,
- 0xc2, 0x37, 0xf1, 0x33, 0x57, 0xfc, 0x7c, 0x32, 0x15, 0xf3, 0x22, 0x1c, 0x7e, 0x80, 0x9d, 0x0c,
- 0x3c, 0x4d, 0x62, 0x07, 0xd6, 0x3d, 0xde, 0xa5, 0xe1, 0x9c, 0xa6, 0x51, 0xf3, 0xd4, 0x16, 0xcd,
- 0x83, 0xb8, 0xa3, 0x2b, 0xdf, 0x65, 0x74, 0x42, 0x7d, 0x41, 0xc6, 0x45, 0x78, 0xec, 0x4a, 0x1e,
- 0xcb, 0x78, 0x8a, 0x07, 0x1e, 0xc3, 0xa6, 0x5a, 0xec, 0xcc, 0xc6, 0x45, 0xac, 0xa0, 0xaf, 0xe1,
- 0x95, 0xcb, 0x28, 0x11, 0xb4, 0xdb, 0xf3, 0xc4, 0x84, 0x4c, 0xad, 0x15, 0x79, 0xab, 0x86, 0x9a,
- 0x3c, 0x95, 0x73, 0xb8, 0x05, 0x28, 0x6e, 0x4d, 0x73, 0x98, 0xc2, 0xd6, 0x05, 0x61, 0x3d, 0x32,
- 0xa0, 0x67, 0xc1, 0x78, 0x4c, 0x5d, 0xf1, 0x9f, 0xf3, 0xb0, 0xe0, 0xed, 0xb2, 0x45, 0xcd, 0xe5,
- 0x23, 0x6c, 0x19, 0xe0, 0x5b, 0xef, 0x33, 0x2d, 0xe2, 0xf9, 0xef, 0xe0, 0xed, 0x32, 0x98, 0x7e,
- 0x7e, 0x04, 0xab, 0xdc, 0xfb, 0x4c, 0x25, 0x4e, 0xc5, 0x91, 0xdf, 0x78, 0x04, 0x3b, 0x27, 0xd3,
- 0xe9, 0x78, 0x7e, 0xe1, 0x09, 0x22, 0x04, 0xf3, 0x7a, 0x33, 0x41, 0x8b, 0x24, 0x01, 0xb2, 0x61,
- 0x9d, 0xd1, 0x27, 0x8f, 0x7b, 0x81, 0x2f, 0xbd, 0xd0, 0x70, 0xa2, 0x31, 0xde, 0x03, 0x3b, 0xcb,
- 0x98, 0xf6, 0xc2, 0x5f, 0x65, 0x40, 0x1d, 0x2a, 0xdc, 0xa1, 0x43, 0x27, 0x81, 0x28, 0xe2, 0x83,
- 0x30, 0xdb, 0x98, 0x04, 0x91, 0x14, 0xea, 0x8e, 0x1e, 0xa1, 0x16, 0xac, 0xf5, 0x03, 0xe6, 0x52,
- 0xab, 0x22, 0xdf, 0x47, 0x0d, 0xd0, 0x36, 0xd4, 0xfc, 0xa0, 0x2b, 0xc8, 0x80, 0x5b, 0xab, 0x2a,
- 0x39, 0xfd, 0xe0, 0x8e, 0x0c, 0x38, 0xb2, 0xa0, 0x26, 0xbc, 0x09, 0x0d, 0x66, 0xc2, 0x5a, 0x3b,
- 0x28, 0x1f, 0xae, 0x39, 0x8b, 0x61, 0x78, 0x84, 0xf3, 0x61, 0x77, 0x44, 0xe7, 0x56, 0x55, 0x59,
- 0xe0, 0x7c, 0xf8, 0x91, 0xce, 0xd1, 0x3b, 0xd8, 0x18, 0xf9, 0xc1, 0xb3, 0xdf, 0x1d, 0x06, 0x61,
- 0xb2, 0xd7, 0xe4, 0x22, 0xc8, 0xa9, 0xcb, 0x70, 0x06, 0x6f, 0xc1, 0x9b, 0xc4, 0x25, 0xf5, 0xe5,
- 0xaf, 0x61, 0xfb, 0x4c, 0x06, 0x4b, 0xec, 0x46, 0x05, 0x82, 0xc0, 0x06, 0x2b, 0x0d, 0xa7, 0x4d,
- 0xfd, 0x5d, 0x86, 0xcd, 0x0b, 0x2a, 0x4e, 0x98, 0x3b, 0xf4, 0x9e, 0x0a, 0xb9, 0x79, 0x17, 0xea,
- 0x6e, 0x30, 0x99, 0x78, 0xa2, 0xeb, 0x3d, 0x6a, 0x4f, 0xaf, 0xab, 0x89, 0xab, 0xc7, 0xf0, 0x0d,
- 0xa6, 0x8c, 0xf6, 0xbd, 0x4f, 0xd2, 0xd9, 0x75, 0x47, 0x8f, 0xd0, 0x8f, 0x50, 0xed, 0x07, 0x6c,
- 0x42, 0x84, 0x74, 0xf6, 0xeb, 0xf6, 0xc1, 0xc2, 0x48, 0x8a, 0xd3, 0x51, 0x47, 0xee, 0x73, 0xf4,
- 0x7e, 0x7c, 0x0c, 0x55, 0x35, 0x83, 0x6a, 0x50, 0x79, 0xb8, 0xfa, 0xb9, 0x59, 0x0a, 0x3f, 0xee,
- 0x4e, 0x9c, 0x66, 0x19, 0x01, 0x54, 0xef, 0x4e, 0x9c, 0xee, 0xc5, 0x43, 0x73, 0x05, 0x6d, 0x40,
- 0x2d, 0xfc, 0x3e, 0x7d, 0x68, 0x37, 0x2b, 0xf8, 0x10, 0x50, 0x1c, 0xd8, 0xa4, 0xc2, 0x23, 0x11,
- 0x44, 0xde, 0xb3, 0xe1, 0xc8, 0xef, 0xf0, 0x09, 0x2e, 0x09, 0xff, 0x29, 0x70, 0xc9, 0xf8, 0x94,
- 0x11, 0xdf, 0x1d, 0x16, 0x4a, 0x04, 0xfc, 0x1e, 0xac, 0x34, 0x9c, 0x36, 0xdf, 0x82, 0xb5, 0x27,
- 0x32, 0x9e, 0x51, 0x5d, 0x85, 0xd5, 0x00, 0x0b, 0x68, 0x9d, 0x0d, 0x89, 0x3f, 0xa0, 0xb7, 0x22,
- 0x60, 0x64, 0x50, 0xe8, 0x69, 0x0e, 0xa1, 0xe9, 0xd3, 0xe7, 0x2e, 0x57, 0x48, 0x5d, 0x9f, 0x4c,
- 0x16, 0xb9, 0xf0, 0xda, 0xa7, 0xcf, 0xda, 0xc0, 0x0d, 0x99, 0x50, 0xbc, 0x0d, 0x5b, 0x4b, 0x56,
- 0x75, 0x9c, 0xfc, 0x59, 0x06, 0x4b, 0x86, 0xea, 0x6d, 0x30, 0x63, 0x2e, 0x55, 0x97, 0x28, 0xc2,
- 0xe9, 0x03, 0x6c, 0x72, 0x09, 0xd5, 0x8d, 0x1d, 0x5d, 0xc9, 0x3d, 0xda, 0x54, 0x9b, 0x9d, 0x44,
- 0x99, 0xd5, 0x00, 0x3d, 0x49, 0x46, 0x46, 0x56, 0xc3, 0x69, 0xf0, 0x18, 0x41, 0xb4, 0x0f, 0x20,
- 0x08, 0x1b, 0x50, 0xd1, 0x65, 0xb4, 0x2f, 0x63, 0xac, 0xe1, 0xd4, 0xd5, 0x8c, 0x43, 0xfb, 0xf8,
- 0x18, 0x76, 0x32, 0x2e, 0x65, 0xba, 0x34, 0xa3, 0x7c, 0x36, 0x16, 0x8b, 0x2e, 0xad, 0x46, 0xf8,
- 0x04, 0x36, 0x3a, 0xdc, 0x1d, 0x15, 0x09, 0x87, 0x6f, 0xa0, 0xa1, 0x20, 0x4c, 0x08, 0x50, 0xc6,
- 0x02, 0xa6, 0x43, 0x50, 0x0d, 0xf0, 0x1f, 0x65, 0xf8, 0xe2, 0x9e, 0x79, 0x61, 0xde, 0xf6, 0x8b,
- 0xb8, 0xba, 0x09, 0x95, 0xf0, 0xf6, 0xaa, 0x00, 0x87, 0x9f, 0x89, 0xba, 0x5c, 0x49, 0xd6, 0x65,
- 0x53, 0x16, 0x57, 0x63, 0x65, 0x11, 0x1f, 0x42, 0xd3, 0x50, 0x79, 0x91, 0xf5, 0x10, 0x5a, 0x1d,
- 0xcf, 0x7f, 0xbc, 0xa6, 0x6c, 0x40, 0x4f, 0x09, 0x2f, 0x14, 0xb8, 0x7b, 0x50, 0x5f, 0xf0, 0xe2,
- 0xd6, 0xca, 0x41, 0x25, 0x7c, 0xbd, 0x68, 0x02, 0x7f, 0x0b, 0x5b, 0x4b, 0x96, 0x4c, 0x42, 0xf7,
- 0x08, 0x57, 0x09, 0x55, 0x77, 0xe4, 0x37, 0xfe, 0xbd, 0x0c, 0x9b, 0xaa, 0x0a, 0x76, 0x02, 0x36,
- 0xfa, 0x3f, 0x23, 0x37, 0xd4, 0x20, 0x71, 0x26, 0x8a, 0x74, 0xfb, 0x1f, 0x90, 0x42, 0x68, 0xd1,
- 0xab, 0x95, 0x62, 0x45, 0xf7, 0xd0, 0x5c, 0x96, 0x91, 0xe8, 0x5d, 0xda, 0x4a, 0x42, 0xaf, 0xda,
- 0x07, 0xf9, 0x1b, 0x74, 0x3a, 0x97, 0xd0, 0x43, 0xdc, 0x9a, 0xd6, 0x86, 0x28, 0xe3, 0x60, 0x52,
- 0x86, 0xda, 0x5f, 0xbd, 0xb0, 0x63, 0x09, 0x3b, 0xa9, 0xf7, 0x12, 0xd8, 0x99, 0xd2, 0x32, 0x81,
- 0x9d, 0x23, 0x16, 0x4b, 0xe8, 0x1c, 0xc0, 0x08, 0x38, 0xb4, 0x93, 0x3c, 0x12, 0x93, 0x90, 0xb6,
- 0x9d, 0xb5, 0x14, 0xc1, 0xfc, 0x02, 0xaf, 0x93, 0xfa, 0x0b, 0xed, 0x47, 0xad, 0x27, 0x4b, 0x09,
- 0xda, 0x5f, 0xe6, 0x2d, 0xc7, 0x21, 0x93, 0x5a, 0xcb, 0x40, 0x66, 0x0a, 0x3a, 0x03, 0x99, 0x2d,
- 0xd1, 0x70, 0x09, 0xfd, 0x0a, 0x28, 0xad, 0x91, 0x50, 0xe4, 0xa7, 0x5c, 0xb1, 0x66, 0xe3, 0x97,
- 0xb6, 0x44, 0xf0, 0x97, 0xb0, 0x11, 0x93, 0x1f, 0x28, 0xf2, 0x58, 0x5a, 0x78, 0xd9, 0xbb, 0x99,
- 0x6b, 0x11, 0xd2, 0x3d, 0x34, 0x97, 0x25, 0x86, 0x09, 0xd3, 0x1c, 0x2d, 0x63, 0xc2, 0x34, 0x57,
- 0x9d, 0x94, 0xd0, 0x05, 0x80, 0xe9, 0xd8, 0xe6, 0xb9, 0x53, 0xf2, 0xc0, 0x3c, 0x77, 0xba, 0xc1,
- 0xe3, 0xd2, 0xfb, 0x72, 0xc8, 0x70, 0xb9, 0x03, 0x1b, 0x86, 0x39, 0xad, 0xde, 0x30, 0xcc, 0x6b,
- 0xde, 0xb8, 0x84, 0x6e, 0xe0, 0x55, 0xa2, 0x65, 0xa2, 0xbd, 0xe8, 0x5a, 0x19, 0xfd, 0xdb, 0xde,
- 0xcf, 0x59, 0x8d, 0x27, 0x4f, 0xaa, 0x27, 0x99, 0xe4, 0xc9, 0xeb, 0xc1, 0x26, 0x79, 0x72, 0x1b,
- 0x1a, 0x2e, 0xa1, 0x63, 0x58, 0x0d, 0xfb, 0x0e, 0x7a, 0x13, 0x6d, 0x36, 0x8d, 0xcc, 0x6e, 0x25,
- 0x27, 0xa3, 0x43, 0x1f, 0x60, 0x7d, 0x51, 0xfa, 0xd1, 0xf6, 0x62, 0xcf, 0x52, 0x5f, 0xb2, 0xad,
- 0xf4, 0x42, 0xdc, 0x43, 0x89, 0x3a, 0x6d, 0x3c, 0x94, 0xd5, 0x28, 0x8c, 0x87, 0x32, 0x8b, 0xbb,
- 0x2a, 0x01, 0xa6, 0x7e, 0x9a, 0x98, 0x48, 0x55, 0x77, 0x13, 0x13, 0xe9, 0x72, 0x8b, 0x4b, 0xbd,
- 0xaa, 0xfc, 0xef, 0x3f, 0xfe, 0x37, 0x00, 0x00, 0xff, 0xff, 0x63, 0x07, 0x47, 0x06, 0x29, 0x10,
- 0x00, 0x00,
+ // 1116 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xdd, 0x6e, 0xe3, 0x36,
+ 0x13, 0xb5, 0xe3, 0xc4, 0x8e, 0x27, 0xde, 0xfd, 0x1c, 0x6e, 0x7e, 0x14, 0x25, 0xf9, 0x36, 0x65,
+ 0x7b, 0x11, 0xa0, 0x6d, 0xb0, 0x70, 0x80, 0xa2, 0x77, 0x8b, 0x64, 0x11, 0x27, 0xc1, 0x36, 0x8b,
+ 0x56, 0x1b, 0x20, 0x40, 0x80, 0xc2, 0xa0, 0x65, 0xda, 0x16, 0xfc, 0x43, 0x97, 0xa4, 0xd3, 0xf5,
+ 0x3e, 0x41, 0xfb, 0x12, 0x7d, 0xa9, 0x3e, 0x42, 0x2f, 0xfb, 0x12, 0x85, 0x48, 0x5a, 0x94, 0x2c,
+ 0x29, 0x37, 0x42, 0xd1, 0x3b, 0x71, 0x48, 0x9e, 0x39, 0x9c, 0x21, 0x67, 0x8e, 0xc0, 0xe1, 0x74,
+ 0xc6, 0x44, 0x20, 0x19, 0x5f, 0x7c, 0x2b, 0x28, 0x7f, 0x0a, 0x7c, 0x7a, 0x36, 0xe3, 0x4c, 0x32,
+ 0x54, 0x1d, 0x04, 0x92, 0x8c, 0x17, 0x6e, 0x43, 0x0c, 0x09, 0xa7, 0x3d, 0x6d, 0xc5, 0x77, 0xb0,
+ 0xef, 0x45, 0x3b, 0xae, 0x3e, 0x05, 0x42, 0x0a, 0x8f, 0xfe, 0x32, 0xa7, 0x42, 0xa2, 0x16, 0x80,
+ 0x05, 0x73, 0xca, 0x27, 0xe5, 0xd3, 0xad, 0x16, 0x3a, 0xd3, 0x28, 0x67, 0x76, 0x93, 0x17, 0x5b,
+ 0x85, 0x5b, 0xe0, 0xa4, 0xe1, 0xc4, 0x8c, 0x4d, 0x05, 0x45, 0x7b, 0x50, 0xa5, 0xca, 0xa2, 0xb0,
+ 0x36, 0x3d, 0x33, 0xc2, 0x1f, 0xe2, 0x7b, 0x6e, 0xc5, 0xd5, 0x64, 0x26, 0x17, 0x45, 0x38, 0x7c,
+ 0x07, 0x07, 0x19, 0x78, 0x86, 0xc4, 0x01, 0x6c, 0x06, 0xa2, 0x43, 0x43, 0x9b, 0xa1, 0x51, 0x0b,
+ 0xf4, 0x12, 0xc3, 0x83, 0xf8, 0xa3, 0xdb, 0xa9, 0xcf, 0xe9, 0x84, 0x4e, 0x25, 0x19, 0x17, 0xe1,
+ 0x71, 0xa8, 0x78, 0xac, 0xe2, 0x69, 0x1e, 0x78, 0x0c, 0xdb, 0x7a, 0xb2, 0x3d, 0x1f, 0x17, 0xf1,
+ 0x82, 0xbe, 0x84, 0x17, 0x3e, 0xa7, 0x44, 0xd2, 0x4e, 0x37, 0x90, 0x13, 0x32, 0x73, 0xd6, 0xd4,
+ 0xa9, 0x1a, 0xda, 0x78, 0xa9, 0x6c, 0x78, 0x07, 0x50, 0xdc, 0x9b, 0xe1, 0x30, 0x83, 0xdd, 0x6b,
+ 0xc2, 0xbb, 0x64, 0x40, 0xdf, 0xb1, 0xf1, 0x98, 0xfa, 0xf2, 0x5f, 0xe7, 0xe1, 0xc0, 0xde, 0xaa,
+ 0x47, 0xc3, 0xe5, 0x3d, 0xec, 0x5a, 0xe0, 0x8f, 0xc1, 0x67, 0x5a, 0x24, 0xf2, 0xdf, 0xc0, 0xde,
+ 0x2a, 0x98, 0x49, 0x3f, 0x82, 0x75, 0x11, 0x7c, 0xa6, 0x0a, 0xa7, 0xe2, 0xa9, 0x6f, 0x3c, 0x82,
+ 0x83, 0x8b, 0xd9, 0x6c, 0xbc, 0xb8, 0x0e, 0x24, 0x91, 0x92, 0x07, 0xdd, 0xb9, 0xa4, 0x45, 0x1e,
+ 0x01, 0x72, 0x61, 0x93, 0xd3, 0xa7, 0x40, 0x04, 0x6c, 0xaa, 0xa2, 0xd0, 0xf0, 0xa2, 0x31, 0x3e,
+ 0x02, 0x37, 0xcb, 0x99, 0x89, 0xc2, 0x5f, 0x65, 0x40, 0x6d, 0x2a, 0xfd, 0xa1, 0x47, 0x27, 0x4c,
+ 0x16, 0x89, 0x41, 0xf8, 0xda, 0xb8, 0x02, 0x51, 0x14, 0xea, 0x9e, 0x19, 0xa1, 0x1d, 0xd8, 0xe8,
+ 0x33, 0xee, 0x53, 0xa7, 0xa2, 0xf2, 0xa3, 0x07, 0x68, 0x1f, 0x6a, 0x53, 0xd6, 0x91, 0x64, 0x20,
+ 0x9c, 0x75, 0xfd, 0x38, 0xa7, 0xec, 0x9e, 0x0c, 0x04, 0x72, 0xa0, 0x26, 0x83, 0x09, 0x65, 0x73,
+ 0xe9, 0x6c, 0x9c, 0x94, 0x4f, 0x37, 0xbc, 0xe5, 0x30, 0xdc, 0x22, 0xc4, 0xb0, 0x33, 0xa2, 0x0b,
+ 0xa7, 0xaa, 0x3d, 0x08, 0x31, 0x7c, 0x4f, 0x17, 0xe8, 0x35, 0x6c, 0x8d, 0xa6, 0xec, 0xd7, 0x69,
+ 0x67, 0xc8, 0xc2, 0xc7, 0x5e, 0x53, 0x93, 0xa0, 0x4c, 0x37, 0xa1, 0x05, 0xef, 0xc2, 0xab, 0xc4,
+ 0x21, 0xcd, 0xe1, 0xef, 0x60, 0xff, 0x9d, 0xba, 0x2c, 0xb1, 0x13, 0x15, 0xb8, 0x04, 0x2e, 0x38,
+ 0x69, 0x38, 0xe3, 0xea, 0xef, 0x32, 0x6c, 0x5f, 0x53, 0x79, 0xc1, 0xfd, 0x61, 0xf0, 0x54, 0x28,
+ 0xcc, 0x87, 0x50, 0xf7, 0xd9, 0x64, 0x12, 0xc8, 0x4e, 0xd0, 0x33, 0x91, 0xde, 0xd4, 0x86, 0xdb,
+ 0x5e, 0x98, 0x83, 0x19, 0xa7, 0xfd, 0xe0, 0x93, 0x0a, 0x76, 0xdd, 0x33, 0x23, 0xf4, 0x3d, 0x54,
+ 0xfb, 0x8c, 0x4f, 0x88, 0x54, 0xc1, 0x7e, 0xd9, 0x3a, 0x59, 0x3a, 0x49, 0x71, 0x3a, 0x6b, 0xab,
+ 0x75, 0x9e, 0x59, 0x8f, 0xcf, 0xa1, 0xaa, 0x2d, 0xa8, 0x06, 0x95, 0xc7, 0xdb, 0x1f, 0x9b, 0xa5,
+ 0xf0, 0xe3, 0xfe, 0xc2, 0x6b, 0x96, 0x11, 0x40, 0xf5, 0xfe, 0xc2, 0xeb, 0x5c, 0x3f, 0x36, 0xd7,
+ 0xd0, 0x16, 0xd4, 0xc2, 0xef, 0xcb, 0xc7, 0x56, 0xb3, 0x82, 0x4f, 0x01, 0xc5, 0x81, 0xed, 0x53,
+ 0xe8, 0x11, 0x49, 0xd4, 0x39, 0x1b, 0x9e, 0xfa, 0x0e, 0x53, 0x70, 0x43, 0xc4, 0x0f, 0xcc, 0x27,
+ 0xe3, 0x4b, 0x4e, 0xa6, 0xfe, 0xb0, 0xd0, 0x43, 0xc0, 0x6f, 0xc0, 0x49, 0xc3, 0x19, 0xf7, 0x3b,
+ 0xb0, 0xf1, 0x44, 0xc6, 0x73, 0x6a, 0xaa, 0xb0, 0x1e, 0xe0, 0x3f, 0xcb, 0xe0, 0xa8, 0xbb, 0xf1,
+ 0x91, 0xcd, 0xb9, 0x4f, 0xf5, 0xae, 0x22, 0xf9, 0x79, 0x0b, 0xdb, 0x42, 0x41, 0x75, 0x62, 0x5b,
+ 0xd7, 0x72, 0xb7, 0x36, 0xf5, 0x62, 0x2f, 0x51, 0xd7, 0x0c, 0x40, 0x57, 0x91, 0x51, 0xa9, 0x6c,
+ 0x78, 0x0d, 0x11, 0x23, 0x88, 0x8e, 0x01, 0x24, 0xe1, 0x03, 0x2a, 0x3b, 0x9c, 0xf6, 0x55, 0x52,
+ 0x1b, 0x5e, 0x5d, 0x5b, 0x3c, 0xda, 0xc7, 0xe7, 0x70, 0x90, 0x71, 0x28, 0xdb, 0x16, 0x39, 0x15,
+ 0xf3, 0xb1, 0x5c, 0xb6, 0x45, 0x3d, 0xc2, 0x17, 0xb0, 0xd5, 0x16, 0xfe, 0xa8, 0x48, 0xfc, 0xbf,
+ 0x82, 0x86, 0x86, 0xb0, 0x31, 0xa7, 0x9c, 0x33, 0x6e, 0x72, 0xae, 0x07, 0xf8, 0xf7, 0x32, 0xfc,
+ 0xef, 0x81, 0x07, 0xe1, 0x43, 0xe9, 0x17, 0x09, 0x75, 0x13, 0x2a, 0xe1, 0xe9, 0x75, 0xc5, 0x0b,
+ 0x3f, 0x13, 0x85, 0xb0, 0x92, 0x2c, 0x84, 0xb6, 0x0e, 0xad, 0xc7, 0xea, 0x10, 0x3e, 0x85, 0xa6,
+ 0xa5, 0xf2, 0x2c, 0xeb, 0x21, 0xec, 0xb4, 0x83, 0x69, 0xef, 0x8e, 0xf2, 0x01, 0xbd, 0x24, 0xa2,
+ 0xd0, 0x23, 0x3e, 0x82, 0xfa, 0x92, 0x97, 0x70, 0xd6, 0x4e, 0x2a, 0x61, 0xf6, 0x22, 0x03, 0xfe,
+ 0x1a, 0x76, 0x57, 0x3c, 0xd9, 0x17, 0xd4, 0x25, 0x42, 0xdf, 0xe0, 0xba, 0xa7, 0xbe, 0xf1, 0x6f,
+ 0x65, 0xd8, 0xd6, 0x65, 0xa7, 0xcd, 0xf8, 0xe8, 0xbf, 0xbc, 0xb9, 0x61, 0xd3, 0x8f, 0x33, 0xd1,
+ 0xa4, 0x5b, 0x7f, 0x80, 0x52, 0x1e, 0xcb, 0xe6, 0xa8, 0x25, 0x22, 0x7a, 0x80, 0xe6, 0xaa, 0x6e,
+ 0x43, 0xaf, 0xd3, 0x5e, 0x12, 0x02, 0xd1, 0x3d, 0xc9, 0x5f, 0x60, 0xea, 0x6c, 0x09, 0x3d, 0xc6,
+ 0xbd, 0x19, 0x31, 0x86, 0x32, 0x36, 0x26, 0x75, 0x9f, 0xfb, 0xc5, 0x33, 0x2b, 0x56, 0xb0, 0x93,
+ 0x02, 0x2b, 0x81, 0x9d, 0xa9, 0xe5, 0x12, 0xd8, 0x39, 0xea, 0xac, 0x84, 0xae, 0x00, 0xac, 0x62,
+ 0x42, 0x07, 0xc9, 0x2d, 0x31, 0xcd, 0xe6, 0xba, 0x59, 0x53, 0x11, 0xcc, 0x4f, 0xf0, 0x32, 0x29,
+ 0x78, 0xd0, 0x71, 0x54, 0xeb, 0xb3, 0xa4, 0x97, 0xfb, 0xff, 0xbc, 0xe9, 0x38, 0x64, 0x52, 0xdc,
+ 0x58, 0xc8, 0x4c, 0x05, 0x65, 0x21, 0xb3, 0x35, 0x11, 0x2e, 0xa1, 0x9f, 0x01, 0xa5, 0x45, 0x09,
+ 0x8a, 0xe2, 0x94, 0xab, 0x8e, 0x5c, 0xfc, 0xdc, 0x92, 0x08, 0xfe, 0x06, 0xb6, 0x62, 0xfd, 0x1e,
+ 0x45, 0x11, 0x4b, 0x2b, 0x1d, 0xf7, 0x30, 0x73, 0x2e, 0x42, 0x7a, 0x80, 0xe6, 0x6a, 0x4f, 0xb7,
+ 0xd7, 0x34, 0x47, 0x3c, 0xd8, 0x6b, 0x9a, 0x2b, 0x07, 0x4a, 0xe8, 0x1a, 0xc0, 0xb6, 0x48, 0x9b,
+ 0xee, 0x54, 0x3f, 0xb6, 0xe9, 0x4e, 0x77, 0x54, 0x5c, 0x7a, 0x53, 0x0e, 0x19, 0xae, 0xb6, 0x3c,
+ 0xcb, 0x30, 0xa7, 0xb7, 0x5a, 0x86, 0x79, 0xdd, 0x52, 0x5f, 0xf6, 0x54, 0x0f, 0xb1, 0x97, 0x3d,
+ 0xaf, 0x67, 0xda, 0xcb, 0x9e, 0xdb, 0x80, 0x70, 0x09, 0x9d, 0xc3, 0x7a, 0xd8, 0x27, 0xd0, 0xab,
+ 0x68, 0xb1, 0x6d, 0x3c, 0xee, 0x4e, 0xd2, 0x18, 0x6d, 0x7a, 0x0b, 0x9b, 0xcb, 0x52, 0x8d, 0xf6,
+ 0x97, 0x6b, 0x56, 0xfa, 0x88, 0xeb, 0xa4, 0x27, 0x22, 0x80, 0x0f, 0xf0, 0x22, 0x51, 0x57, 0xd1,
+ 0x51, 0xe4, 0x29, 0xa3, 0xb0, 0xbb, 0xc7, 0x39, 0xb3, 0xf1, 0x27, 0x6b, 0xeb, 0x9d, 0xcd, 0x61,
+ 0xaa, 0x1a, 0xdb, 0x1c, 0xa6, 0xcb, 0x23, 0x2e, 0x75, 0xab, 0xea, 0xc7, 0xf8, 0xfc, 0x9f, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0x14, 0xbc, 0x13, 0x49, 0x4a, 0x0f, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 2b69947fe..515b3a42f 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -201,12 +201,12 @@
"revisionTime": "2017-01-30T11:31:45Z"
},
{
- "checksumSHA1": "y8DwyuzVd/S2zqYSI24ehAmcc48=",
+ "checksumSHA1": "ecgc6D1lbhf4iGqyqEl6lxjrNdw=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
- "revision": "848e1b73269a25c244dbc6c6a89f27baf291fd4b",
- "revisionTime": "2017-12-22T18:56:20Z",
- "version": "v0.64.0",
- "versionExact": "v0.64.0"
+ "revision": "ddd55e057604ca7671fba73f251f8d5c325eba1e",
+ "revisionTime": "2017-12-29T19:20:10Z",
+ "version": "v0.65.0",
+ "versionExact": "v0.65.0"
},
{
"checksumSHA1": "nqWNlnMmVpt628zzvyo6Yv2CX5Q=",