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-22 19:57:07 +0300
committerAhmad Sherif <me@ahmadsherif.com>2017-12-23 00:01:40 +0300
commitf1dd32f480ca93a8fe2bc9b2b3d85b6edb69519f (patch)
tree61bcacc38ae51cecb84973605767052ba3341d45
parentdcfe84c04baac74c3084b2dc50991467c7b239f9 (diff)
Add support for MaxCount in CountCommits RPC
Closes #855
-rw-r--r--CHANGELOG.md2
-rw-r--r--internal/service/commit/count_commits.go3
-rw-r--r--internal/service/commit/count_commits_test.go11
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION2
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go190
-rw-r--r--vendor/vendor.json10
6 files changed, 121 insertions, 97 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8328e2ebd..3bcbd613e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
UNRELEASED
+- Add support for MaxCount in CountCommits RPC
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/507
- Implement CreateFork RPC
https://gitlab.com/gitlab-org/gitaly/merge_requests/497
diff --git a/internal/service/commit/count_commits.go b/internal/service/commit/count_commits.go
index 96545cc25..061083646 100644
--- a/internal/service/commit/count_commits.go
+++ b/internal/service/commit/count_commits.go
@@ -31,6 +31,9 @@ func (s *server) CountCommits(ctx context.Context, in *pb.CountCommitsRequest) (
if after := in.GetAfter(); after != nil {
cmdArgs = append(cmdArgs, "--after="+timestampToRFC3339(after.Seconds))
}
+ if maxCount := in.GetMaxCount(); maxCount != 0 {
+ cmdArgs = append(cmdArgs, fmt.Sprintf("--max-count=%d", maxCount))
+ }
if path := in.GetPath(); path != nil {
cmdArgs = append(cmdArgs, "--", string(path))
}
diff --git a/internal/service/commit/count_commits_test.go b/internal/service/commit/count_commits_test.go
index 9241a001c..82bcf8483 100644
--- a/internal/service/commit/count_commits_test.go
+++ b/internal/service/commit/count_commits_test.go
@@ -28,6 +28,7 @@ func TestSuccessfulCountCommitsRequest(t *testing.T) {
testCases := []struct {
revision, path []byte
before, after, desc string
+ maxCount int32
count int32
}{
{
@@ -46,6 +47,12 @@ func TestSuccessfulCountCommitsRequest(t *testing.T) {
count: 39,
},
{
+ desc: "revision + max-count",
+ revision: []byte("e63f41fe459e62e1228fcef60d7189127aeba95a"),
+ maxCount: 15,
+ count: 15,
+ },
+ {
desc: "non-existing revision",
revision: []byte("deadfacedeadfacedeadfacedeadfacedeadface"),
count: 0,
@@ -97,6 +104,10 @@ func TestSuccessfulCountCommitsRequest(t *testing.T) {
request.After = &timestamp.Timestamp{Seconds: after.Unix()}
}
+ if testCase.maxCount != 0 {
+ request.MaxCount = testCase.maxCount
+ }
+
if testCase.path != nil {
request.Path = testCase.path
}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
index 70cd2261d..d4f16f060 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
@@ -1 +1 @@
-0.63.0
+0.64.0
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go
index d62364a4f..9e9c2c79d 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go
@@ -349,6 +349,7 @@ type CountCommitsRequest struct {
After *google_protobuf.Timestamp `protobuf:"bytes,3,opt,name=after" json:"after,omitempty"`
Before *google_protobuf.Timestamp `protobuf:"bytes,4,opt,name=before" json:"before,omitempty"`
Path []byte `protobuf:"bytes,5,opt,name=path,proto3" json:"path,omitempty"`
+ MaxCount int32 `protobuf:"varint,6,opt,name=max_count,json=maxCount" json:"max_count,omitempty"`
}
func (m *CountCommitsRequest) Reset() { *m = CountCommitsRequest{} }
@@ -391,6 +392,13 @@ func (m *CountCommitsRequest) GetPath() []byte {
return nil
}
+func (m *CountCommitsRequest) GetMaxCount() int32 {
+ if m != nil {
+ return m.MaxCount
+ }
+ return 0
+}
+
type CountCommitsResponse struct {
Count int32 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
}
@@ -1995,98 +2003,98 @@ var _CommitService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("commit.proto", fileDescriptor1) }
var fileDescriptor1 = []byte{
- // 1475 bytes of a gzipped FileDescriptorProto
+ // 1484 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xdd, 0x6e, 0x1a, 0x47,
0x14, 0xf6, 0x82, 0xc1, 0x70, 0xa0, 0x0e, 0x9e, 0xfc, 0xe1, 0x75, 0x12, 0x3b, 0xdb, 0x3f, 0xa2,
0x54, 0xc4, 0xa2, 0x6a, 0xd5, 0x5e, 0x55, 0x76, 0x82, 0x5d, 0xa7, 0x76, 0x88, 0xd6, 0x48, 0x51,
- 0x7a, 0x83, 0xd6, 0xec, 0x00, 0xd3, 0x2c, 0x0c, 0xd9, 0x1d, 0xe2, 0xd0, 0x4a, 0xbd, 0xaf, 0xd4,
- 0x57, 0xe9, 0x23, 0xf4, 0xa2, 0xaf, 0xd0, 0x17, 0xe8, 0x7d, 0x1f, 0x21, 0x57, 0xd5, 0xfc, 0xec,
- 0xce, 0xc2, 0x2e, 0x49, 0x63, 0x8b, 0xdc, 0xa0, 0x39, 0x67, 0xce, 0xce, 0xf9, 0xce, 0x99, 0xf3,
- 0x37, 0x40, 0xb9, 0x4b, 0x87, 0x43, 0xc2, 0xea, 0x63, 0x9f, 0x32, 0x8a, 0xf2, 0x7d, 0xc2, 0x1c,
- 0x6f, 0x6a, 0x96, 0x83, 0x81, 0xe3, 0x63, 0x57, 0x72, 0xcd, 0xed, 0x3e, 0xa5, 0x7d, 0x0f, 0x3f,
- 0x10, 0xd4, 0xd9, 0xa4, 0xf7, 0x80, 0x91, 0x21, 0x0e, 0x98, 0x33, 0x1c, 0x4b, 0x01, 0xcb, 0x05,
- 0xf4, 0x50, 0x1c, 0x73, 0xca, 0x1c, 0x16, 0xd8, 0xf8, 0xe5, 0x04, 0x07, 0x0c, 0x35, 0x00, 0x7c,
- 0x3c, 0xa6, 0x01, 0x61, 0xd4, 0x9f, 0x56, 0x8d, 0x1d, 0xa3, 0x56, 0x6a, 0xa0, 0xba, 0xd4, 0x50,
- 0xb7, 0xa3, 0x1d, 0x3b, 0x26, 0x85, 0x4c, 0x28, 0xf8, 0xf8, 0x15, 0x09, 0x08, 0x1d, 0x55, 0x33,
- 0x3b, 0x46, 0xad, 0x6c, 0x47, 0xb4, 0xd5, 0x85, 0xab, 0x33, 0x5a, 0x82, 0x31, 0x1d, 0x05, 0x18,
- 0x55, 0x20, 0x4b, 0x89, 0x2b, 0xce, 0x2f, 0xda, 0x7c, 0x89, 0x6e, 0x41, 0xd1, 0x71, 0x5d, 0xc2,
- 0x08, 0x1d, 0x05, 0xe2, 0x94, 0x9c, 0xad, 0x19, 0x7c, 0xd7, 0xc5, 0x1e, 0x96, 0xbb, 0x59, 0xb9,
- 0x1b, 0x31, 0xac, 0xdf, 0x0c, 0xb8, 0x29, 0xb5, 0x1c, 0x05, 0x7b, 0xa3, 0x2e, 0x0e, 0x18, 0xf5,
- 0x2f, 0x63, 0xd0, 0x36, 0x94, 0x1c, 0x75, 0x4c, 0x87, 0xb8, 0x02, 0x4d, 0xd1, 0x86, 0x90, 0x75,
- 0xe4, 0xa2, 0x4d, 0x28, 0x74, 0x07, 0xc4, 0x73, 0xf9, 0x6e, 0x56, 0xec, 0xae, 0x09, 0xfa, 0xc8,
- 0xb5, 0x76, 0xa1, 0x9a, 0x84, 0xa2, 0xac, 0xbe, 0x06, 0xb9, 0x57, 0x8e, 0x37, 0xc1, 0x02, 0x46,
- 0xc1, 0x96, 0x84, 0xf5, 0xbb, 0x01, 0x95, 0xb6, 0x8f, 0x71, 0x73, 0xc4, 0xfc, 0xe9, 0x92, 0xee,
- 0x01, 0x21, 0x58, 0x1d, 0x3b, 0x6c, 0x20, 0xd0, 0x96, 0x6d, 0xb1, 0xe6, 0x70, 0x3c, 0x32, 0x24,
- 0xac, 0xba, 0xba, 0x63, 0xd4, 0xb2, 0xb6, 0x24, 0xac, 0xbf, 0x0d, 0xd8, 0x88, 0xc1, 0x51, 0xd0,
- 0xbf, 0x81, 0x55, 0x36, 0x1d, 0x4b, 0xe4, 0xeb, 0x8d, 0x4f, 0x42, 0x24, 0x09, 0xc1, 0x7a, 0xeb,
- 0xec, 0x27, 0xdc, 0x65, 0xed, 0xe9, 0x18, 0xdb, 0xe2, 0x8b, 0xf0, 0xaa, 0x33, 0xfa, 0xaa, 0x11,
- 0xac, 0x06, 0xe4, 0x67, 0x2c, 0xb0, 0x64, 0x6d, 0xb1, 0xe6, 0xbc, 0x21, 0x75, 0xb1, 0x80, 0x92,
- 0xb3, 0xc5, 0x9a, 0xf3, 0x5c, 0x87, 0x39, 0xd5, 0x9c, 0xc4, 0xcc, 0xd7, 0xd6, 0x57, 0x00, 0x5a,
- 0x03, 0x02, 0xc8, 0x3f, 0x6c, 0x9d, 0x9c, 0x1c, 0xb5, 0x2b, 0x2b, 0xa8, 0x00, 0xab, 0xfb, 0xc7,
- 0xad, 0xfd, 0x8a, 0xc1, 0x57, 0x6d, 0xbb, 0xd9, 0xac, 0x64, 0xd0, 0x1a, 0x64, 0xdb, 0x7b, 0x87,
- 0x95, 0xac, 0x45, 0xe1, 0xba, 0xbc, 0x95, 0x60, 0x1f, 0xb3, 0x73, 0x8c, 0x47, 0x97, 0xf1, 0x33,
- 0x82, 0xd5, 0x9e, 0x4f, 0x87, 0xca, 0xc7, 0x62, 0x8d, 0xd6, 0x21, 0xc3, 0xa8, 0xf2, 0x6e, 0x86,
- 0x51, 0xab, 0x09, 0x37, 0xe6, 0x15, 0x2a, 0x4f, 0xde, 0x87, 0x35, 0x99, 0xbe, 0x41, 0xd5, 0xd8,
- 0xc9, 0xd6, 0x4a, 0x8d, 0x8d, 0x50, 0xdd, 0x21, 0x61, 0xf2, 0x1b, 0x3b, 0x94, 0xb0, 0xfe, 0x31,
- 0x78, 0xfe, 0x4c, 0x46, 0x6a, 0x63, 0x59, 0x69, 0x8a, 0x76, 0x21, 0xe7, 0xf4, 0x18, 0xf6, 0x85,
- 0x05, 0xa5, 0x86, 0x59, 0x97, 0xd5, 0xa3, 0x1e, 0x56, 0x8f, 0x7a, 0x3b, 0xac, 0x1e, 0xb6, 0x14,
- 0x44, 0x0d, 0xc8, 0x9f, 0xe1, 0x1e, 0xf5, 0xe5, 0x95, 0xbd, 0xfd, 0x13, 0x25, 0x19, 0x05, 0x61,
- 0x4e, 0x07, 0xa1, 0xf5, 0x05, 0x5c, 0x9b, 0x35, 0x50, 0xe7, 0x4a, 0x97, 0xf3, 0x85, 0x71, 0x39,
- 0x5b, 0x12, 0xd6, 0x1b, 0x03, 0x8a, 0x51, 0xcc, 0xa5, 0x54, 0x91, 0x4d, 0x28, 0xf8, 0x94, 0xb2,
- 0x8e, 0x8e, 0xb8, 0x35, 0x4e, 0xb7, 0x64, 0xd4, 0x25, 0x32, 0xe0, 0x81, 0x8a, 0xea, 0x55, 0x11,
- 0xd5, 0x5b, 0x89, 0xa8, 0xae, 0x8b, 0xdf, 0x58, 0x30, 0x87, 0x61, 0x9a, 0x8b, 0x85, 0xe9, 0x6d,
- 0x00, 0x79, 0x5d, 0x42, 0x6b, 0x5e, 0x68, 0x2d, 0x4a, 0x0e, 0xd7, 0xbb, 0x05, 0xc5, 0x9e, 0xe7,
- 0xb0, 0x8e, 0x50, 0xbe, 0x26, 0xfd, 0xce, 0x19, 0x4f, 0xb9, 0xf5, 0xf7, 0xa1, 0x18, 0xa9, 0x88,
- 0x22, 0x78, 0x25, 0x8a, 0x60, 0x23, 0x16, 0xe1, 0x59, 0xeb, 0x17, 0xb8, 0x7e, 0x88, 0x59, 0x08,
- 0x8e, 0xe0, 0xe0, 0x03, 0x16, 0x0b, 0x1e, 0xd0, 0xf3, 0xca, 0x75, 0x40, 0x63, 0xc9, 0x9a, 0x0f,
- 0x68, 0x5d, 0x1d, 0x42, 0x09, 0xeb, 0x0c, 0x2a, 0xc7, 0x24, 0x60, 0x07, 0xc4, 0x5b, 0x1a, 0x7c,
- 0xeb, 0x1e, 0x6c, 0xc4, 0x74, 0xe8, 0x78, 0xe2, 0x76, 0x48, 0x8c, 0x65, 0x5b, 0x12, 0x56, 0x17,
- 0x36, 0x0e, 0xc8, 0xc8, 0x55, 0x69, 0xb7, 0x24, 0x3c, 0xdf, 0x01, 0x8a, 0x2b, 0x51, 0x80, 0xee,
- 0x41, 0x5e, 0x06, 0x89, 0xd2, 0x90, 0x52, 0x06, 0x94, 0x80, 0xd5, 0x81, 0x9b, 0xdc, 0xa0, 0xb0,
- 0xa0, 0x4c, 0x5b, 0xc4, 0xbd, 0x0c, 0xd6, 0xa8, 0x22, 0x67, 0x55, 0xda, 0x58, 0x87, 0x50, 0x4d,
- 0x2a, 0xb8, 0x48, 0xbd, 0x7a, 0x63, 0xc0, 0x75, 0x6e, 0xeb, 0x9e, 0xe7, 0x2d, 0xb9, 0x62, 0x6d,
- 0x41, 0x71, 0xe8, 0xbc, 0xee, 0xc8, 0x1a, 0x21, 0x27, 0x82, 0xc2, 0xd0, 0x79, 0x2d, 0x6a, 0x89,
- 0xe8, 0x30, 0x2f, 0xc8, 0x38, 0xec, 0x26, 0x7c, 0x8d, 0xbe, 0x85, 0x1c, 0xf5, 0x5d, 0xec, 0x8b,
- 0xdc, 0x5d, 0x6f, 0x7c, 0x1c, 0xea, 0x4e, 0x85, 0x5b, 0x6f, 0x71, 0x51, 0x5b, 0x7e, 0x61, 0x7d,
- 0x0a, 0x39, 0x41, 0xf3, 0xbc, 0x7c, 0xd2, 0x7a, 0xd2, 0x54, 0x19, 0xda, 0x7a, 0xda, 0x92, 0xdd,
- 0xe6, 0xd1, 0x5e, 0xbb, 0x59, 0xc9, 0xf0, 0x14, 0x99, 0x3f, 0xec, 0x22, 0x3e, 0xfc, 0x37, 0x13,
- 0x8f, 0x97, 0xa5, 0x39, 0x30, 0xea, 0xfe, 0xd2, 0x79, 0x92, 0x40, 0x37, 0x20, 0x4f, 0x7b, 0xbd,
- 0x00, 0x33, 0xe5, 0x3b, 0x45, 0xe9, 0xf4, 0xc9, 0xc5, 0xd2, 0x87, 0x4b, 0xf7, 0xa8, 0xe7, 0xd1,
- 0x73, 0x51, 0xf6, 0x0a, 0xb6, 0xa2, 0xf8, 0x00, 0xc5, 0x7d, 0xde, 0x19, 0x62, 0xbf, 0x8f, 0x03,
- 0x51, 0xf5, 0x0a, 0x36, 0x70, 0xd6, 0x89, 0xe0, 0xa0, 0xbb, 0x50, 0x76, 0x49, 0xe0, 0x9c, 0x79,
- 0xb8, 0x73, 0xee, 0x78, 0x2f, 0xaa, 0x05, 0x21, 0x51, 0x52, 0xbc, 0x67, 0x8e, 0xf7, 0x42, 0xb7,
- 0xa4, 0xe2, 0xfb, 0xb7, 0x24, 0xf8, 0xbf, 0x2d, 0xc9, 0xda, 0x87, 0xab, 0x33, 0xbe, 0xbe, 0xc8,
- 0x85, 0x0d, 0xc2, 0x5e, 0x7f, 0xec, 0x8c, 0xfa, 0x13, 0xa7, 0xbf, 0xbc, 0xca, 0xf6, 0x47, 0x34,
- 0xe8, 0xc6, 0x54, 0x29, 0xc8, 0x07, 0x50, 0xf4, 0x42, 0xa6, 0x02, 0x5d, 0x0b, 0x55, 0x2d, 0xf8,
- 0xa6, 0x1e, 0x72, 0x6c, 0xfd, 0xa9, 0xf9, 0x18, 0x0a, 0x21, 0x9b, 0xe7, 0xd1, 0xc8, 0x19, 0x62,
- 0xd5, 0x61, 0xc5, 0x9a, 0x47, 0x82, 0x78, 0x68, 0x08, 0x70, 0x19, 0x5b, 0x12, 0xb2, 0x5d, 0x7b,
- 0xd4, 0x57, 0xe3, 0xb0, 0x24, 0xac, 0x09, 0x5c, 0xb1, 0x9d, 0xf3, 0x7d, 0xcf, 0x19, 0xe2, 0x0f,
- 0xd9, 0xab, 0x3e, 0x83, 0x8a, 0x56, 0xab, 0xdc, 0x13, 0x0e, 0x93, 0x46, 0x6c, 0x98, 0xfc, 0x15,
- 0xaa, 0xc7, 0x4e, 0x58, 0xf6, 0x0e, 0xa8, 0xcf, 0x5b, 0xf2, 0x87, 0xc4, 0x79, 0x00, 0x9b, 0x29,
- 0xfa, 0xdf, 0xbf, 0x3f, 0xfc, 0x15, 0x85, 0x45, 0xb0, 0x3f, 0x3d, 0xc1, 0x41, 0xc0, 0xaf, 0x74,
- 0x49, 0x76, 0xe8, 0x02, 0x91, 0x9d, 0x2f, 0x10, 0xfa, 0x31, 0x11, 0x95, 0x93, 0x94, 0x89, 0x8f,
- 0x4b, 0xbe, 0x9c, 0x60, 0x7f, 0xaa, 0x46, 0x25, 0x49, 0xf0, 0x16, 0x94, 0x34, 0xe1, 0x22, 0xd9,
- 0x48, 0x60, 0xfb, 0x80, 0x78, 0x0c, 0xfb, 0xa7, 0x03, 0x27, 0x78, 0x46, 0xd8, 0xe0, 0x94, 0xf4,
- 0x47, 0x0e, 0x9b, 0xf8, 0x97, 0x4b, 0x4b, 0xde, 0x52, 0x06, 0x4e, 0x20, 0xba, 0x66, 0xd9, 0x16,
- 0x6b, 0xeb, 0x6b, 0xd8, 0x59, 0xac, 0x4a, 0xc7, 0x9d, 0xf8, 0xce, 0xd0, 0xdf, 0x35, 0xfe, 0x04,
- 0xf8, 0x48, 0xbd, 0x8a, 0xb1, 0xff, 0x8a, 0x74, 0x31, 0x7a, 0x06, 0x95, 0xf9, 0x57, 0x23, 0xda,
- 0x9e, 0xcd, 0xde, 0xc4, 0xd3, 0xd6, 0xdc, 0x59, 0x2c, 0x20, 0x95, 0x5b, 0x2b, 0xe8, 0x51, 0x7c,
- 0x5e, 0xae, 0xa6, 0x3c, 0xdb, 0xe4, 0x51, 0x9b, 0x0b, 0x1f, 0x74, 0xd6, 0xca, 0xae, 0x81, 0x4e,
- 0x61, 0x7d, 0xf6, 0x35, 0x83, 0x6e, 0xcf, 0xea, 0x9e, 0x7b, 0x56, 0x99, 0x77, 0x16, 0x6d, 0xc7,
- 0x0e, 0xfd, 0x01, 0xca, 0xf1, 0xc9, 0x1f, 0x6d, 0xe9, 0x6f, 0x12, 0x0f, 0x1e, 0xf3, 0x56, 0xfa,
- 0x66, 0x64, 0xe7, 0x29, 0xac, 0xcf, 0x8e, 0xa7, 0x1a, 0x61, 0xea, 0xcc, 0xac, 0x11, 0xa6, 0x4f,
- 0xb5, 0x02, 0xe1, 0x23, 0x28, 0x46, 0x83, 0xa4, 0x76, 0xde, 0xfc, 0xfc, 0xaa, 0x9d, 0x97, 0x98,
- 0x3a, 0xc5, 0x29, 0x4d, 0x00, 0xdd, 0x62, 0xd0, 0x66, 0x7c, 0xee, 0x98, 0x99, 0x3b, 0x4d, 0x33,
- 0x6d, 0x2b, 0xb2, 0xf0, 0x7b, 0x28, 0xc5, 0xfe, 0x49, 0x41, 0xe6, 0xac, 0x87, 0xe3, 0x7f, 0xe2,
- 0x98, 0x5b, 0xa9, 0x7b, 0x71, 0x5f, 0xcd, 0xce, 0x29, 0xda, 0x57, 0xa9, 0xc3, 0x90, 0xf6, 0x55,
- 0xfa, 0x78, 0x23, 0xac, 0x7c, 0x0c, 0xa5, 0x58, 0x23, 0x45, 0x29, 0xb6, 0x24, 0xe1, 0xa5, 0x74,
- 0x5e, 0x71, 0x56, 0x1b, 0xae, 0xcc, 0x75, 0x2c, 0x74, 0x67, 0x61, 0x2b, 0x93, 0x67, 0x6e, 0xbf,
- 0xa3, 0xd5, 0x59, 0x2b, 0x68, 0x0f, 0x0a, 0x61, 0x57, 0x40, 0x37, 0xa3, 0x6c, 0x9f, 0x6d, 0x4f,
- 0x66, 0x35, 0xb9, 0x11, 0x03, 0xf6, 0x23, 0x6c, 0x24, 0x0a, 0x36, 0x8a, 0xd2, 0x70, 0x51, 0x2f,
- 0x31, 0xef, 0xbe, 0x45, 0x22, 0x82, 0xf7, 0x3c, 0x2c, 0x01, 0xba, 0x00, 0xce, 0x97, 0x80, 0x44,
- 0x75, 0x9f, 0x2f, 0x01, 0xc9, 0xda, 0x29, 0x60, 0x3f, 0x97, 0x8f, 0xae, 0xf8, 0x78, 0xaf, 0x8f,
- 0x5e, 0xf0, 0xb2, 0xd0, 0x47, 0x2f, 0x7a, 0x19, 0x88, 0xa3, 0x03, 0xa8, 0x2e, 0x2a, 0x81, 0xe8,
- 0x73, 0x7d, 0xcf, 0x6f, 0xad, 0xc7, 0x66, 0xed, 0xdd, 0x82, 0xa1, 0xca, 0x9a, 0xb1, 0x6b, 0x9c,
- 0xe5, 0xc5, 0x40, 0xf7, 0xe5, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x52, 0x6f, 0x9d, 0x27, 0x08,
- 0x15, 0x00, 0x00,
+ 0x7a, 0x83, 0xc6, 0xec, 0x00, 0xd3, 0x2c, 0x2c, 0xd9, 0x1d, 0xe2, 0xd0, 0x4a, 0xbd, 0xaf, 0xd4,
+ 0x57, 0xe9, 0x23, 0xf4, 0xa2, 0xaf, 0xd0, 0xc7, 0xe8, 0x23, 0x44, 0xbd, 0xa8, 0xe6, 0x67, 0x77,
+ 0x16, 0x76, 0x49, 0x1a, 0x5b, 0xe4, 0x06, 0xed, 0x9c, 0xf9, 0x39, 0xdf, 0x39, 0x73, 0xce, 0x77,
+ 0xce, 0x00, 0xe5, 0xae, 0x37, 0x1c, 0x52, 0x56, 0x1f, 0xfb, 0x1e, 0xf3, 0x50, 0xbe, 0x4f, 0x19,
+ 0x76, 0xa7, 0x66, 0x39, 0x18, 0x60, 0x9f, 0x38, 0x52, 0x6a, 0x6e, 0xf7, 0x3d, 0xaf, 0xef, 0x92,
+ 0x07, 0x62, 0x74, 0x36, 0xe9, 0x3d, 0x60, 0x74, 0x48, 0x02, 0x86, 0x87, 0x63, 0xb9, 0xc0, 0x72,
+ 0x00, 0x3d, 0x14, 0xc7, 0x9c, 0x32, 0xcc, 0x02, 0x9b, 0xbc, 0x9c, 0x90, 0x80, 0xa1, 0x06, 0x80,
+ 0x4f, 0xc6, 0x5e, 0x40, 0x99, 0xe7, 0x4f, 0xab, 0xc6, 0x8e, 0x51, 0x2b, 0x35, 0x50, 0x5d, 0x6a,
+ 0xa8, 0xdb, 0xd1, 0x8c, 0x1d, 0x5b, 0x85, 0x4c, 0x28, 0xf8, 0xe4, 0x15, 0x0d, 0xa8, 0x37, 0xaa,
+ 0x66, 0x76, 0x8c, 0x5a, 0xd9, 0x8e, 0xc6, 0x56, 0x17, 0xae, 0xce, 0x68, 0x09, 0xc6, 0xde, 0x28,
+ 0x20, 0xa8, 0x02, 0x59, 0x8f, 0x3a, 0xe2, 0xfc, 0xa2, 0xcd, 0x3f, 0xd1, 0x2d, 0x28, 0x62, 0xc7,
+ 0xa1, 0x8c, 0x7a, 0xa3, 0x40, 0x9c, 0x92, 0xb3, 0xb5, 0x80, 0xcf, 0x3a, 0xc4, 0x25, 0x72, 0x36,
+ 0x2b, 0x67, 0x23, 0x81, 0xf5, 0x9b, 0x01, 0x37, 0xa5, 0x96, 0xa3, 0x60, 0x6f, 0xd4, 0x25, 0x01,
+ 0xf3, 0xfc, 0xcb, 0x18, 0xb4, 0x0d, 0x25, 0xac, 0x8e, 0xe9, 0x50, 0x47, 0xa0, 0x29, 0xda, 0x10,
+ 0x8a, 0x8e, 0x1c, 0xb4, 0x09, 0x85, 0xee, 0x80, 0xba, 0x0e, 0x9f, 0xcd, 0x8a, 0xd9, 0x35, 0x31,
+ 0x3e, 0x72, 0xac, 0x5d, 0xa8, 0x26, 0xa1, 0x28, 0xab, 0xaf, 0x41, 0xee, 0x15, 0x76, 0x27, 0x44,
+ 0xc0, 0x28, 0xd8, 0x72, 0x60, 0xfd, 0x6e, 0x40, 0xa5, 0xed, 0x13, 0xd2, 0x1c, 0x31, 0x7f, 0xba,
+ 0xa4, 0x7b, 0x40, 0x08, 0x56, 0xc7, 0x98, 0x0d, 0x04, 0xda, 0xb2, 0x2d, 0xbe, 0x39, 0x1c, 0x97,
+ 0x0e, 0x29, 0xab, 0xae, 0xee, 0x18, 0xb5, 0xac, 0x2d, 0x07, 0xd6, 0xdf, 0x06, 0x6c, 0xc4, 0xe0,
+ 0x28, 0xe8, 0xdf, 0xc0, 0x2a, 0x9b, 0x8e, 0x25, 0xf2, 0xf5, 0xc6, 0x27, 0x21, 0x92, 0xc4, 0xc2,
+ 0x7a, 0xeb, 0xec, 0x27, 0xd2, 0x65, 0xed, 0xe9, 0x98, 0xd8, 0x62, 0x47, 0x78, 0xd5, 0x19, 0x7d,
+ 0xd5, 0x08, 0x56, 0x03, 0xfa, 0x33, 0x11, 0x58, 0xb2, 0xb6, 0xf8, 0xe6, 0xb2, 0xa1, 0xe7, 0x10,
+ 0x01, 0x25, 0x67, 0x8b, 0x6f, 0x2e, 0x73, 0x30, 0xc3, 0xd5, 0x9c, 0xc4, 0xcc, 0xbf, 0xad, 0xaf,
+ 0x00, 0xb4, 0x06, 0x04, 0x90, 0x7f, 0xd8, 0x3a, 0x39, 0x39, 0x6a, 0x57, 0x56, 0x50, 0x01, 0x56,
+ 0xf7, 0x8f, 0x5b, 0xfb, 0x15, 0x83, 0x7f, 0xb5, 0xed, 0x66, 0xb3, 0x92, 0x41, 0x6b, 0x90, 0x6d,
+ 0xef, 0x1d, 0x56, 0xb2, 0x96, 0x07, 0xd7, 0xe5, 0xad, 0x04, 0xfb, 0x84, 0x9d, 0x13, 0x32, 0xba,
+ 0x8c, 0x9f, 0x11, 0xac, 0xf6, 0x7c, 0x6f, 0xa8, 0x7c, 0x2c, 0xbe, 0xd1, 0x3a, 0x64, 0x98, 0xa7,
+ 0xbc, 0x9b, 0x61, 0x9e, 0xd5, 0x84, 0x1b, 0xf3, 0x0a, 0x95, 0x27, 0xef, 0xc3, 0x9a, 0x4c, 0xdf,
+ 0xa0, 0x6a, 0xec, 0x64, 0x6b, 0xa5, 0xc6, 0x46, 0xa8, 0xee, 0x90, 0x32, 0xb9, 0xc7, 0x0e, 0x57,
+ 0x58, 0xff, 0x1a, 0x3c, 0x7f, 0x26, 0x23, 0x35, 0xb1, 0xac, 0x34, 0x45, 0xbb, 0x90, 0xc3, 0x3d,
+ 0x46, 0x7c, 0x61, 0x41, 0xa9, 0x61, 0xd6, 0x25, 0x7b, 0xd4, 0x43, 0xf6, 0xa8, 0xb7, 0x43, 0xf6,
+ 0xb0, 0xe5, 0x42, 0xd4, 0x80, 0xfc, 0x19, 0xe9, 0x79, 0xbe, 0xbc, 0xb2, 0xb7, 0x6f, 0x51, 0x2b,
+ 0xa3, 0x20, 0xcc, 0xc5, 0x82, 0x70, 0x0b, 0x8a, 0x43, 0xfc, 0xba, 0xd3, 0xe5, 0x46, 0x56, 0xf3,
+ 0xe2, 0xf6, 0x0b, 0x43, 0xfc, 0x5a, 0x18, 0x6d, 0x7d, 0x01, 0xd7, 0x66, 0xad, 0xd7, 0x89, 0x24,
+ 0x37, 0x18, 0x62, 0x83, 0x1c, 0x58, 0x6f, 0x0c, 0x28, 0x46, 0x01, 0x99, 0x42, 0x31, 0x9b, 0x50,
+ 0xf0, 0x3d, 0x8f, 0x75, 0x74, 0x38, 0xae, 0xf1, 0x71, 0x4b, 0x86, 0x64, 0x22, 0x3d, 0x1e, 0xa8,
+ 0x90, 0x5f, 0x15, 0x21, 0xbf, 0x95, 0x08, 0xf9, 0xba, 0xf8, 0x8d, 0x45, 0x7a, 0x18, 0xc3, 0xb9,
+ 0x58, 0x0c, 0xdf, 0x06, 0x90, 0x77, 0x29, 0xb4, 0xe6, 0x85, 0xd6, 0xa2, 0x94, 0x70, 0xbd, 0x5b,
+ 0x50, 0xec, 0xb9, 0x98, 0x75, 0x84, 0xf2, 0x35, 0x79, 0x29, 0x5c, 0xf0, 0x14, 0xb3, 0x81, 0x75,
+ 0x1f, 0x8a, 0x91, 0x8a, 0x28, 0xbc, 0x57, 0xa2, 0xf0, 0x36, 0x62, 0xe1, 0x9f, 0xb5, 0x7e, 0x81,
+ 0xeb, 0x87, 0x84, 0x85, 0xe0, 0x28, 0x09, 0x3e, 0x20, 0x93, 0xf0, 0x68, 0x9f, 0x57, 0xae, 0xa3,
+ 0x9d, 0x48, 0xd1, 0x7c, 0xb4, 0x6b, 0xea, 0x08, 0x57, 0x58, 0x67, 0x50, 0x39, 0xa6, 0x01, 0x3b,
+ 0xa0, 0xee, 0xd2, 0xe0, 0x5b, 0xf7, 0x60, 0x23, 0xa6, 0x43, 0xc7, 0x13, 0xb7, 0x43, 0x62, 0x2c,
+ 0xdb, 0x72, 0x60, 0x75, 0x61, 0xe3, 0x80, 0x8e, 0x1c, 0x95, 0x93, 0x4b, 0xc2, 0xf3, 0x1d, 0xa0,
+ 0xb8, 0x12, 0x05, 0xe8, 0x1e, 0xe4, 0x65, 0x90, 0x28, 0x0d, 0x29, 0x1c, 0xa1, 0x16, 0x58, 0x1d,
+ 0xb8, 0xc9, 0x0d, 0x0a, 0xd9, 0x66, 0xda, 0xa2, 0xce, 0x65, 0xb0, 0x46, 0x74, 0x9d, 0x55, 0x69,
+ 0x63, 0x1d, 0x42, 0x35, 0xa9, 0xe0, 0x22, 0x64, 0xf6, 0xc6, 0x80, 0xeb, 0xdc, 0xd6, 0x3d, 0xd7,
+ 0x5d, 0x32, 0x9d, 0xcd, 0x90, 0x4a, 0x76, 0x96, 0x54, 0x44, 0xf9, 0x79, 0x41, 0xc7, 0x61, 0xa9,
+ 0xe1, 0xdf, 0xe8, 0x5b, 0xc8, 0x79, 0xbe, 0x43, 0x7c, 0x91, 0xbb, 0xeb, 0x8d, 0x8f, 0x43, 0xdd,
+ 0xa9, 0x70, 0xeb, 0x2d, 0xbe, 0xd4, 0x96, 0x3b, 0xac, 0x4f, 0x21, 0x27, 0xc6, 0x3c, 0x2f, 0x9f,
+ 0xb4, 0x9e, 0x34, 0x55, 0x86, 0xb6, 0x9e, 0xb6, 0x64, 0x29, 0x7a, 0xb4, 0xd7, 0x6e, 0x56, 0x32,
+ 0x3c, 0x45, 0xe6, 0x0f, 0xbb, 0x88, 0x0f, 0xff, 0xc9, 0xc4, 0xe3, 0x65, 0x69, 0x0e, 0x8c, 0x5a,
+ 0x03, 0xe9, 0x3c, 0x39, 0x40, 0x37, 0x20, 0xef, 0xf5, 0x7a, 0x01, 0x61, 0xca, 0x77, 0x6a, 0xa4,
+ 0xd3, 0x27, 0x17, 0x4b, 0x1f, 0xbe, 0xba, 0xe7, 0xb9, 0xae, 0x77, 0x2e, 0x68, 0xaf, 0x60, 0xab,
+ 0x11, 0xef, 0xae, 0xb8, 0xcf, 0x3b, 0x43, 0xe2, 0xf7, 0x49, 0x20, 0x58, 0xaf, 0x60, 0x03, 0x17,
+ 0x9d, 0x08, 0x09, 0xba, 0x0b, 0x65, 0x87, 0x06, 0xf8, 0xcc, 0x25, 0x9d, 0x73, 0xec, 0xbe, 0xa8,
+ 0x16, 0xc4, 0x8a, 0x92, 0x92, 0x3d, 0xc3, 0xee, 0x0b, 0x5d, 0xaf, 0x8a, 0xef, 0x5f, 0xaf, 0xe0,
+ 0xff, 0xd6, 0x2b, 0x6b, 0x1f, 0xae, 0xce, 0xf8, 0xfa, 0x22, 0x17, 0x36, 0x08, 0x1b, 0x81, 0x63,
+ 0x3c, 0xea, 0x4f, 0x70, 0x7f, 0x79, 0xcc, 0xf6, 0x47, 0xd4, 0x05, 0xc7, 0x54, 0x29, 0xc8, 0x07,
+ 0x50, 0x74, 0x43, 0xa1, 0x02, 0x5d, 0x0b, 0x55, 0x2d, 0xd8, 0x53, 0x0f, 0x25, 0xb6, 0xde, 0x6a,
+ 0x3e, 0x86, 0x42, 0x28, 0xe6, 0x79, 0x34, 0xc2, 0x43, 0xa2, 0x2a, 0xac, 0xf8, 0xe6, 0x91, 0x20,
+ 0x5e, 0x21, 0x02, 0x5c, 0xc6, 0x96, 0x03, 0x59, 0xae, 0x5d, 0xcf, 0x57, 0xbd, 0xb2, 0x1c, 0x58,
+ 0x13, 0xb8, 0x62, 0xe3, 0xf3, 0x7d, 0x17, 0x0f, 0xc9, 0x87, 0xac, 0x55, 0x9f, 0x41, 0x45, 0xab,
+ 0x55, 0xee, 0x09, 0x3b, 0x4d, 0x23, 0xd6, 0x69, 0xfe, 0x0a, 0xd5, 0x63, 0x1c, 0xd2, 0xde, 0x81,
+ 0xe7, 0xf3, 0x92, 0xfc, 0x21, 0x71, 0x1e, 0xc0, 0x66, 0x8a, 0xfe, 0xf7, 0xaf, 0x0f, 0x7f, 0x45,
+ 0x61, 0x11, 0xec, 0x4f, 0x4f, 0x48, 0x10, 0xf0, 0x2b, 0x5d, 0x92, 0x1d, 0x9a, 0x20, 0xb2, 0xf3,
+ 0x04, 0xa1, 0x5f, 0x1a, 0x11, 0x9d, 0xa4, 0xb5, 0x83, 0xd7, 0x20, 0xf7, 0x72, 0x42, 0xfc, 0xa9,
+ 0x6a, 0x95, 0xe4, 0x80, 0x97, 0xa0, 0xa4, 0x09, 0x17, 0xc9, 0x46, 0x0a, 0xdb, 0x07, 0xd4, 0x65,
+ 0xc4, 0x3f, 0x1d, 0xe0, 0xe0, 0x19, 0x65, 0x83, 0x53, 0xda, 0x1f, 0x61, 0x36, 0xf1, 0x2f, 0x97,
+ 0x96, 0xbc, 0xa4, 0x0c, 0x70, 0x20, 0xaa, 0x66, 0xd9, 0x16, 0xdf, 0xd6, 0xd7, 0xb0, 0xb3, 0x58,
+ 0x95, 0x8e, 0x3b, 0xb1, 0xcf, 0xd0, 0xfb, 0x1a, 0x7f, 0x02, 0x7c, 0xa4, 0x9e, 0xcc, 0xc4, 0x7f,
+ 0x45, 0xbb, 0x04, 0x3d, 0x83, 0xca, 0xfc, 0x93, 0x12, 0x6d, 0xcf, 0x66, 0x6f, 0xe2, 0xdd, 0x6b,
+ 0xee, 0x2c, 0x5e, 0x20, 0x95, 0x5b, 0x2b, 0xe8, 0x51, 0xbc, 0x5f, 0xae, 0xa6, 0xbc, 0xe9, 0xe4,
+ 0x51, 0x9b, 0x0b, 0x5f, 0x7b, 0xd6, 0xca, 0xae, 0x81, 0x4e, 0x61, 0x7d, 0xf6, 0xa9, 0x83, 0x6e,
+ 0xcf, 0xea, 0x9e, 0x7b, 0x73, 0x99, 0x77, 0x16, 0x4d, 0xc7, 0x0e, 0xfd, 0x01, 0xca, 0xf1, 0xce,
+ 0x1f, 0x6d, 0xe9, 0x3d, 0x89, 0xd7, 0x90, 0x79, 0x2b, 0x7d, 0x32, 0xb2, 0xf3, 0x14, 0xd6, 0x67,
+ 0xdb, 0x53, 0x8d, 0x30, 0xb5, 0x67, 0xd6, 0x08, 0xd3, 0xbb, 0x5a, 0x81, 0xf0, 0x11, 0x14, 0xa3,
+ 0x46, 0x52, 0x3b, 0x6f, 0xbe, 0x7f, 0xd5, 0xce, 0x4b, 0x74, 0x9d, 0xe2, 0x94, 0x26, 0x80, 0x2e,
+ 0x31, 0x68, 0x33, 0xde, 0x77, 0xcc, 0xf4, 0x9d, 0xa6, 0x99, 0x36, 0x15, 0x59, 0xf8, 0x3d, 0x94,
+ 0x62, 0x7f, 0xb3, 0x20, 0x73, 0xd6, 0xc3, 0xf1, 0x7f, 0x78, 0xcc, 0xad, 0xd4, 0xb9, 0xb8, 0xaf,
+ 0x66, 0xfb, 0x14, 0xed, 0xab, 0xd4, 0x66, 0x48, 0xfb, 0x2a, 0xbd, 0xbd, 0x11, 0x56, 0x3e, 0x86,
+ 0x52, 0xac, 0x90, 0xa2, 0x14, 0x5b, 0x92, 0xf0, 0x52, 0x2a, 0xaf, 0x38, 0xab, 0x0d, 0x57, 0xe6,
+ 0x2a, 0x16, 0xba, 0xb3, 0xb0, 0x94, 0xc9, 0x33, 0xb7, 0xdf, 0x51, 0xea, 0xac, 0x15, 0xb4, 0x07,
+ 0x85, 0xb0, 0x2a, 0xa0, 0x9b, 0x51, 0xb6, 0xcf, 0x96, 0x27, 0xb3, 0x9a, 0x9c, 0x88, 0x01, 0xfb,
+ 0x11, 0x36, 0x12, 0x84, 0x8d, 0xa2, 0x34, 0x5c, 0x54, 0x4b, 0xcc, 0xbb, 0x6f, 0x59, 0x11, 0xc1,
+ 0x7b, 0x1e, 0x52, 0x80, 0x26, 0xc0, 0x79, 0x0a, 0x48, 0xb0, 0xfb, 0x3c, 0x05, 0x24, 0xb9, 0x53,
+ 0xc0, 0x7e, 0x2e, 0x1f, 0x5d, 0xf1, 0xf6, 0x5e, 0x1f, 0xbd, 0xe0, 0x65, 0xa1, 0x8f, 0x5e, 0xf4,
+ 0x32, 0x10, 0x47, 0x07, 0x50, 0x5d, 0x44, 0x81, 0xe8, 0x73, 0x7d, 0xcf, 0x6f, 0xe5, 0x63, 0xb3,
+ 0xf6, 0xee, 0x85, 0xa1, 0xca, 0x9a, 0xb1, 0x6b, 0x9c, 0xe5, 0x45, 0x43, 0xf7, 0xe5, 0x7f, 0x01,
+ 0x00, 0x00, 0xff, 0xff, 0xf6, 0xe5, 0xb4, 0x19, 0x25, 0x15, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index a2bae2f36..2b69947fe 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -201,12 +201,12 @@
"revisionTime": "2017-01-30T11:31:45Z"
},
{
- "checksumSHA1": "m6C31zhZkTp99OQZbCo3A0AR2e0=",
+ "checksumSHA1": "y8DwyuzVd/S2zqYSI24ehAmcc48=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
- "revision": "62e29a26e10abdcfd67d1de72e589e23a5dd9c6e",
- "revisionTime": "2017-12-21T20:50:40Z",
- "version": "v0.63.0",
- "versionExact": "v0.63.0"
+ "revision": "848e1b73269a25c244dbc6c6a89f27baf291fd4b",
+ "revisionTime": "2017-12-22T18:56:20Z",
+ "version": "v0.64.0",
+ "versionExact": "v0.64.0"
},
{
"checksumSHA1": "nqWNlnMmVpt628zzvyo6Yv2CX5Q=",