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-08-02 21:38:12 +0300
committerAhmad Sherif <me@ahmadsherif.com>2017-08-04 14:09:47 +0300
commitf198511bb10a46ee6862ec394303fcb0f4291976 (patch)
tree78193ad9930c5929ed64a2c8b545094f58ca9c96
parent03a681fe4c33c631afdf6047f3cffb5787570654 (diff)
Implement RepositorySize RPC
Closes #436
-rw-r--r--CHANGELOG.md2
-rw-r--r--internal/service/repository/size.go57
-rw-r--r--internal/service/repository/size_test.go71
-rw-r--r--internal/service/repository/testdata/fixed-size-repo.git/HEAD1
-rw-r--r--internal/service/repository/testdata/fixed-size-repo.git/config4
-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/repository-service.pb.go115
-rw-r--r--vendor/vendor.json10
9 files changed, 236 insertions, 28 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c7d9134b1..f53d96aef 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,8 @@ UNRELEASED
- Increase gitaly-ruby connection timeout to 20s
https://gitlab.com/gitlab-org/gitaly/merge_requests/265
+- Implement RepositorySize RPC
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/262
v0.27.0
diff --git a/internal/service/repository/size.go b/internal/service/repository/size.go
new file mode 100644
index 000000000..a54440097
--- /dev/null
+++ b/internal/service/repository/size.go
@@ -0,0 +1,57 @@
+package repository
+
+import (
+ "bytes"
+ "io/ioutil"
+ "os/exec"
+ "strconv"
+
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+
+ "github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus"
+ "golang.org/x/net/context"
+)
+
+func (s *server) RepositorySize(ctx context.Context, in *pb.RepositorySizeRequest) (*pb.RepositorySizeResponse, error) {
+ path, err := helper.GetPath(in.Repository)
+ if err != nil {
+ return nil, err
+ }
+
+ cmd, err := helper.NewCommand(ctx, exec.Command("du", "-sk", path), nil, nil, nil)
+ if err != nil {
+ grpc_logrus.Extract(ctx).WithError(err).Warn("ignoring du command error")
+ return repositorySizeResponse(0), nil
+ }
+
+ sizeLine, err := ioutil.ReadAll(cmd)
+ if err != nil {
+ grpc_logrus.Extract(ctx).WithError(err).Warn("ignoring command read error")
+ return repositorySizeResponse(0), nil
+ }
+
+ if err := cmd.Wait(); err != nil {
+ grpc_logrus.Extract(ctx).WithError(err).Warn("ignoring du wait error")
+ return repositorySizeResponse(0), nil
+ }
+
+ sizeParts := bytes.Split(sizeLine, []byte("\t"))
+ if len(sizeParts) != 2 {
+ grpc_logrus.Extract(ctx).Warn("ignoring du malformed output: %q", sizeLine)
+ return repositorySizeResponse(0), nil
+ }
+
+ size, err := strconv.ParseInt(string(sizeParts[0]), 10, 0)
+ if err != nil {
+ grpc_logrus.Extract(ctx).WithError(err).Warn("ignoring parsing size error")
+ return repositorySizeResponse(0), nil
+ }
+
+ return repositorySizeResponse(size), nil
+}
+
+func repositorySizeResponse(size int64) *pb.RepositorySizeResponse {
+ return &pb.RepositorySizeResponse{Size: size}
+}
diff --git a/internal/service/repository/size_test.go b/internal/service/repository/size_test.go
new file mode 100644
index 000000000..c5d55c66f
--- /dev/null
+++ b/internal/service/repository/size_test.go
@@ -0,0 +1,71 @@
+package repository
+
+import (
+ "os"
+ "path"
+ "testing"
+
+ "gitlab.com/gitlab-org/gitaly/internal/config"
+ "gitlab.com/gitlab-org/gitaly/internal/testhelper"
+
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+
+ "github.com/stretchr/testify/require"
+ "golang.org/x/net/context"
+ "google.golang.org/grpc/codes"
+)
+
+func TestSuccessfulRepositorySizeRequest(t *testing.T) {
+ client := newRepositoryClient(t)
+ server := runRepoServer(t)
+ defer server.Stop()
+
+ storageName := "default"
+ storagePath, found := config.StoragePath(storageName)
+ if !found {
+ t.Fatalf("No %q storage was found", storageName)
+ }
+
+ repoCopyPath := path.Join(storagePath, "fixed-size-repo.git")
+ testhelper.MustRunCommand(t, nil, "cp", "-R", "testdata/fixed-size-repo.git", repoCopyPath)
+ defer os.RemoveAll(repoCopyPath)
+
+ request := &pb.RepositorySizeRequest{
+ Repository: &pb.Repository{
+ StorageName: storageName,
+ RelativePath: "fixed-size-repo.git",
+ },
+ }
+
+ response, err := client.RepositorySize(context.Background(), request)
+ require.NoError(t, err)
+ // We can't test for an exact size because it will be different for systems with different sector sizes,
+ // so we settle for anything greater than zero.
+ require.True(t, response.Size > 0, "size must be greater than zero")
+}
+
+func TestFailedRepositorySizeRequest(t *testing.T) {
+ client := newRepositoryClient(t)
+ server := runRepoServer(t)
+ defer server.Stop()
+
+ invalidRepo := &pb.Repository{StorageName: "fake", RelativePath: "path"}
+
+ testCases := []struct {
+ description string
+ repo *pb.Repository
+ }{
+ {repo: invalidRepo, description: "Invalid repo"},
+ }
+
+ for _, testCase := range testCases {
+ t.Logf("test case: %q", testCase.description)
+
+ request := &pb.RepositorySizeRequest{
+ Repository: testCase.repo,
+ }
+
+ _, err := client.RepositorySize(context.Background(), request)
+ testhelper.AssertGrpcError(t, err, codes.InvalidArgument, "")
+ }
+}
diff --git a/internal/service/repository/testdata/fixed-size-repo.git/HEAD b/internal/service/repository/testdata/fixed-size-repo.git/HEAD
new file mode 100644
index 000000000..cb089cd89
--- /dev/null
+++ b/internal/service/repository/testdata/fixed-size-repo.git/HEAD
@@ -0,0 +1 @@
+ref: refs/heads/master
diff --git a/internal/service/repository/testdata/fixed-size-repo.git/config b/internal/service/repository/testdata/fixed-size-repo.git/config
new file mode 100644
index 000000000..07d359d07
--- /dev/null
+++ b/internal/service/repository/testdata/fixed-size-repo.git/config
@@ -0,0 +1,4 @@
+[core]
+ repositoryformatversion = 0
+ filemode = true
+ bare = true
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
index 2094a100c..d21d277be 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
@@ -1 +1 @@
-0.24.0
+0.25.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 e29077081..20c8f3f8b 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
@@ -75,6 +75,8 @@ It has these top-level messages:
RepackFullResponse
GarbageCollectRequest
GarbageCollectResponse
+ RepositorySizeRequest
+ RepositorySizeResponse
Repository
GitCommit
CommitAuthor
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 6c544d7db..39228adad 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
@@ -137,6 +137,39 @@ func (m *GarbageCollectResponse) String() string { return proto.Compa
func (*GarbageCollectResponse) ProtoMessage() {}
func (*GarbageCollectResponse) Descriptor() ([]byte, []int) { return fileDescriptor6, []int{7} }
+type RepositorySizeRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+}
+
+func (m *RepositorySizeRequest) Reset() { *m = RepositorySizeRequest{} }
+func (m *RepositorySizeRequest) String() string { return proto.CompactTextString(m) }
+func (*RepositorySizeRequest) ProtoMessage() {}
+func (*RepositorySizeRequest) Descriptor() ([]byte, []int) { return fileDescriptor6, []int{8} }
+
+func (m *RepositorySizeRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+type RepositorySizeResponse struct {
+ // Repository size in kilobytes
+ Size int64 `protobuf:"varint,1,opt,name=size" json:"size,omitempty"`
+}
+
+func (m *RepositorySizeResponse) Reset() { *m = RepositorySizeResponse{} }
+func (m *RepositorySizeResponse) String() string { return proto.CompactTextString(m) }
+func (*RepositorySizeResponse) ProtoMessage() {}
+func (*RepositorySizeResponse) Descriptor() ([]byte, []int) { return fileDescriptor6, []int{9} }
+
+func (m *RepositorySizeResponse) GetSize() int64 {
+ if m != nil {
+ return m.Size
+ }
+ return 0
+}
+
func init() {
proto.RegisterType((*RepositoryExistsRequest)(nil), "gitaly.RepositoryExistsRequest")
proto.RegisterType((*RepositoryExistsResponse)(nil), "gitaly.RepositoryExistsResponse")
@@ -146,6 +179,8 @@ func init() {
proto.RegisterType((*RepackFullResponse)(nil), "gitaly.RepackFullResponse")
proto.RegisterType((*GarbageCollectRequest)(nil), "gitaly.GarbageCollectRequest")
proto.RegisterType((*GarbageCollectResponse)(nil), "gitaly.GarbageCollectResponse")
+ proto.RegisterType((*RepositorySizeRequest)(nil), "gitaly.RepositorySizeRequest")
+ proto.RegisterType((*RepositorySizeResponse)(nil), "gitaly.RepositorySizeResponse")
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -163,6 +198,7 @@ type RepositoryServiceClient interface {
RepackIncremental(ctx context.Context, in *RepackIncrementalRequest, opts ...grpc.CallOption) (*RepackIncrementalResponse, error)
RepackFull(ctx context.Context, in *RepackFullRequest, opts ...grpc.CallOption) (*RepackFullResponse, error)
GarbageCollect(ctx context.Context, in *GarbageCollectRequest, opts ...grpc.CallOption) (*GarbageCollectResponse, error)
+ RepositorySize(ctx context.Context, in *RepositorySizeRequest, opts ...grpc.CallOption) (*RepositorySizeResponse, error)
// Deprecated, use the RepositoryExists RPC instead.
Exists(ctx context.Context, in *RepositoryExistsRequest, opts ...grpc.CallOption) (*RepositoryExistsResponse, error)
}
@@ -211,6 +247,15 @@ func (c *repositoryServiceClient) GarbageCollect(ctx context.Context, in *Garbag
return out, nil
}
+func (c *repositoryServiceClient) RepositorySize(ctx context.Context, in *RepositorySizeRequest, opts ...grpc.CallOption) (*RepositorySizeResponse, error) {
+ out := new(RepositorySizeResponse)
+ err := grpc.Invoke(ctx, "/gitaly.RepositoryService/RepositorySize", in, out, c.cc, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
func (c *repositoryServiceClient) Exists(ctx context.Context, in *RepositoryExistsRequest, opts ...grpc.CallOption) (*RepositoryExistsResponse, error) {
out := new(RepositoryExistsResponse)
err := grpc.Invoke(ctx, "/gitaly.RepositoryService/Exists", in, out, c.cc, opts...)
@@ -227,6 +272,7 @@ type RepositoryServiceServer interface {
RepackIncremental(context.Context, *RepackIncrementalRequest) (*RepackIncrementalResponse, error)
RepackFull(context.Context, *RepackFullRequest) (*RepackFullResponse, error)
GarbageCollect(context.Context, *GarbageCollectRequest) (*GarbageCollectResponse, error)
+ RepositorySize(context.Context, *RepositorySizeRequest) (*RepositorySizeResponse, error)
// Deprecated, use the RepositoryExists RPC instead.
Exists(context.Context, *RepositoryExistsRequest) (*RepositoryExistsResponse, error)
}
@@ -307,6 +353,24 @@ func _RepositoryService_GarbageCollect_Handler(srv interface{}, ctx context.Cont
return interceptor(ctx, in, info, handler)
}
+func _RepositoryService_RepositorySize_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(RepositorySizeRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(RepositoryServiceServer).RepositorySize(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.RepositoryService/RepositorySize",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(RepositoryServiceServer).RepositorySize(ctx, req.(*RepositorySizeRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
func _RepositoryService_Exists_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RepositoryExistsRequest)
if err := dec(in); err != nil {
@@ -346,6 +410,10 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
Handler: _RepositoryService_GarbageCollect_Handler,
},
{
+ MethodName: "RepositorySize",
+ Handler: _RepositoryService_RepositorySize_Handler,
+ },
+ {
MethodName: "Exists",
Handler: _RepositoryService_Exists_Handler,
},
@@ -357,26 +425,29 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor6) }
var fileDescriptor6 = []byte{
- // 330 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xcb, 0x4e, 0xeb, 0x30,
- 0x10, 0x86, 0x4f, 0x0f, 0x52, 0x84, 0x86, 0x82, 0x60, 0x04, 0x25, 0x35, 0x02, 0x4a, 0xd8, 0xb0,
- 0xa1, 0x8b, 0xf0, 0x06, 0xa0, 0x82, 0x58, 0x14, 0x89, 0xb0, 0x40, 0x62, 0x83, 0xdc, 0x30, 0x2a,
- 0x11, 0x6e, 0x1d, 0x6c, 0x17, 0xd1, 0xc7, 0xe2, 0x0d, 0x91, 0xec, 0x34, 0x97, 0x36, 0x65, 0x53,
- 0x58, 0x66, 0x2e, 0xdf, 0xfc, 0xfe, 0x67, 0x02, 0xbe, 0xa2, 0x54, 0xea, 0xc4, 0x48, 0x35, 0x3d,
- 0xd7, 0xa4, 0x3e, 0x92, 0x98, 0xba, 0xa9, 0x92, 0x46, 0xa2, 0x37, 0x4c, 0x0c, 0x17, 0x53, 0xd6,
- 0xd4, 0xaf, 0x5c, 0xd1, 0x8b, 0x8b, 0x06, 0x7d, 0xd8, 0x8f, 0xf2, 0x8e, 0xde, 0x67, 0xa2, 0x8d,
- 0x8e, 0xe8, 0x7d, 0x42, 0xda, 0x60, 0x08, 0x50, 0xc0, 0xfc, 0x46, 0xa7, 0x71, 0xb6, 0x11, 0x62,
- 0xd7, 0x51, 0xba, 0x45, 0x53, 0x54, 0xaa, 0x0a, 0x42, 0xf0, 0x17, 0x71, 0x3a, 0x95, 0x63, 0x4d,
- 0xd8, 0x02, 0x8f, 0x6c, 0xc4, 0xb2, 0xd6, 0xa3, 0xec, 0x2b, 0xb8, 0xb3, 0x3d, 0x3c, 0x7e, 0xbb,
- 0x1d, 0xc7, 0x8a, 0x46, 0x34, 0x36, 0x5c, 0xac, 0xa2, 0xe1, 0x00, 0xda, 0x35, 0x3c, 0x27, 0x22,
- 0x10, 0xb0, 0xe3, 0x92, 0xd7, 0x13, 0xb1, 0xca, 0x14, 0x3c, 0x85, 0xcd, 0x58, 0x11, 0x37, 0xf4,
- 0x3c, 0x48, 0xcc, 0x88, 0xa7, 0xfe, 0x7f, 0xfb, 0xa8, 0xa6, 0x0b, 0x5e, 0xda, 0x58, 0xb0, 0x0b,
- 0x58, 0x9e, 0x96, 0x69, 0x48, 0x61, 0xef, 0x86, 0xab, 0x01, 0x1f, 0xd2, 0x95, 0x14, 0x82, 0x62,
- 0xf3, 0xe7, 0x3a, 0x7c, 0x68, 0xcd, 0x4f, 0x74, 0x5a, 0xc2, 0xaf, 0x35, 0x6b, 0x48, 0x46, 0x7b,
- 0x70, 0x17, 0x83, 0x8f, 0xb0, 0x3d, 0xbf, 0x46, 0x3c, 0x5e, 0x14, 0x52, 0xb9, 0x17, 0xd6, 0x59,
- 0x5e, 0x90, 0x3d, 0xfc, 0x1f, 0x3e, 0xcd, 0xec, 0x2f, 0xed, 0x06, 0xcb, 0x8d, 0xb5, 0x67, 0xc0,
- 0x4e, 0x7e, 0xa8, 0xc8, 0xd9, 0x3d, 0x80, 0xc2, 0x6c, 0x6c, 0x57, 0x5b, 0x4a, 0xeb, 0x66, 0xac,
- 0x2e, 0x95, 0x63, 0xee, 0x61, 0xab, 0xea, 0x15, 0x1e, 0xce, 0xea, 0x6b, 0xb7, 0xc6, 0x8e, 0x96,
- 0xa5, 0x73, 0x64, 0x1f, 0xbc, 0x5f, 0x34, 0x71, 0xe0, 0xd9, 0x5f, 0xf7, 0xe2, 0x3b, 0x00, 0x00,
- 0xff, 0xff, 0x92, 0x5a, 0xad, 0x44, 0xec, 0x03, 0x00, 0x00,
+ // 370 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0x41, 0x4f, 0xfa, 0x40,
+ 0x10, 0xc5, 0xe1, 0xff, 0x27, 0x8d, 0x19, 0xd1, 0xe8, 0x44, 0xb0, 0xd4, 0xa8, 0x58, 0x2f, 0x1e,
+ 0x94, 0x43, 0xfd, 0x06, 0x1a, 0x34, 0xc6, 0x60, 0x62, 0x3d, 0x98, 0x78, 0x31, 0x4b, 0x9d, 0xe0,
+ 0xc6, 0x42, 0xeb, 0xee, 0x62, 0x84, 0xb3, 0x1f, 0xdc, 0x64, 0x5b, 0x68, 0x0b, 0x8b, 0x97, 0xea,
+ 0xad, 0x9d, 0x9d, 0xf9, 0xcd, 0xdb, 0xbe, 0x97, 0x82, 0x2d, 0x28, 0x8e, 0x24, 0x57, 0x91, 0x98,
+ 0x9c, 0x49, 0x12, 0x1f, 0x3c, 0xa0, 0x4e, 0x2c, 0x22, 0x15, 0xa1, 0x35, 0xe0, 0x8a, 0x85, 0x13,
+ 0xa7, 0x2e, 0x5f, 0x99, 0xa0, 0x97, 0xa4, 0xea, 0xf6, 0x60, 0xd7, 0x9f, 0x4f, 0x74, 0x3f, 0xb9,
+ 0x54, 0xd2, 0xa7, 0xf7, 0x31, 0x49, 0x85, 0x1e, 0x40, 0x06, 0xb3, 0xab, 0xed, 0xea, 0xc9, 0xba,
+ 0x87, 0x9d, 0x84, 0xd2, 0xc9, 0x86, 0xfc, 0x5c, 0x97, 0xeb, 0x81, 0xbd, 0x8c, 0x93, 0x71, 0x34,
+ 0x92, 0x84, 0x4d, 0xb0, 0x48, 0x57, 0x34, 0x6b, 0xcd, 0x4f, 0xdf, 0xdc, 0x3b, 0x3d, 0xc3, 0x82,
+ 0xb7, 0x9b, 0x51, 0x20, 0x68, 0x48, 0x23, 0xc5, 0xc2, 0x32, 0x1a, 0xf6, 0xa0, 0x65, 0xe0, 0x25,
+ 0x22, 0xdc, 0x10, 0xb6, 0x93, 0xc3, 0xab, 0x71, 0x58, 0x66, 0x0b, 0x1e, 0xc3, 0x46, 0x20, 0x88,
+ 0x29, 0x7a, 0xee, 0x73, 0x35, 0x64, 0xb1, 0xfd, 0x4f, 0x5f, 0xaa, 0x9e, 0x14, 0x2f, 0x74, 0xcd,
+ 0xdd, 0x01, 0xcc, 0x6f, 0x4b, 0x35, 0xc4, 0xd0, 0xb8, 0x66, 0xa2, 0xcf, 0x06, 0x74, 0x19, 0x85,
+ 0x21, 0x05, 0xea, 0xcf, 0x75, 0xd8, 0xd0, 0x5c, 0xdc, 0x98, 0x6a, 0xb9, 0x85, 0x46, 0x06, 0x7e,
+ 0xe0, 0x53, 0x2a, 0xf3, 0xe5, 0x4f, 0xa1, 0xb9, 0x08, 0x4b, 0xbd, 0x47, 0xa8, 0x49, 0x3e, 0x25,
+ 0xcd, 0xf9, 0xef, 0xeb, 0x67, 0xef, 0xab, 0xa6, 0xbd, 0x98, 0xb5, 0x27, 0x61, 0xc5, 0x47, 0xd8,
+ 0x5a, 0x4c, 0x10, 0x1e, 0x2e, 0xef, 0x2d, 0x44, 0xd5, 0x69, 0xaf, 0x6e, 0x48, 0xef, 0x59, 0xc1,
+ 0xa7, 0x99, 0xf3, 0xb9, 0x58, 0x60, 0x7e, 0xd0, 0x98, 0x40, 0xe7, 0xe8, 0x87, 0x8e, 0x39, 0xbb,
+ 0x0b, 0x90, 0xf9, 0x8c, 0xad, 0xe2, 0x48, 0x2e, 0x69, 0x8e, 0x63, 0x3a, 0x9a, 0x63, 0xee, 0x61,
+ 0xb3, 0x68, 0x13, 0xee, 0xcf, 0xfa, 0x8d, 0x81, 0x71, 0x0e, 0x56, 0x1d, 0xe7, 0x91, 0x45, 0x4b,
+ 0x32, 0xa4, 0xd1, 0xf7, 0x0c, 0x69, 0x76, 0xd2, 0xad, 0x60, 0x0f, 0xac, 0x5f, 0xf4, 0xa5, 0x6f,
+ 0xe9, 0x1f, 0xd1, 0xf9, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x32, 0x7f, 0x2a, 0xc4, 0xba, 0x04,
+ 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 33665d290..5771a1740 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -191,12 +191,12 @@
"revisionTime": "2017-01-30T11:31:45Z"
},
{
- "checksumSHA1": "8AFcgl/ENSDLQ26Mglf3RXTi2DQ=",
+ "checksumSHA1": "e9ZQz6FpXi0QrNny0gSeJhi239Y=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
- "revision": "a90904cbcc0b21b0aabdfc80c38e30b598309c34",
- "revisionTime": "2017-08-01T15:18:55Z",
- "version": "v0.24.0",
- "versionExact": "v0.24.0"
+ "revision": "8467d23c4e791b2b4f6672e152efb9a07c7b3310",
+ "revisionTime": "2017-08-03T18:19:00Z",
+ "version": "v0.25.0",
+ "versionExact": "v0.25.0"
},
{
"checksumSHA1": "Y+HGqEkYM15ir+J93MEaHdyFy0c=",