gitaly 15.3.0.pre.rc1 → 15.3.0.pre.rc4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/errors_pb.rb +5 -0
- data/ruby/proto/gitaly/objectpool_pb.rb +0 -1
- data/ruby/proto/gitaly/objectpool_services_pb.rb +4 -1
- data/ruby/proto/gitaly/ref_pb.rb +6 -0
- data/ruby/proto/gitaly/ref_services_pb.rb +3 -1
- data/ruby/proto/gitaly/server_pb.rb +24 -0
- data/ruby/proto/gitaly/server_services_pb.rb +2 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0f52ce793737a096239e30b695d65638581b23d2fb2429ea7d6aac20aa7a083
|
4
|
+
data.tar.gz: 1ed0563bd211d4b466ff9313202ce61d675de279757c9f4ef673a48286fd8ca7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8dc6f59be567a6fdc7628c982c4ba9a75384f9fe4ab30e2fa2b1261cb601cf50320c5c1608f56f0a9b1c8a39c3fb7ac3db5d709b33ce8cd25c279c45dc7fcf2
|
7
|
+
data.tar.gz: 05a609b4f910b125c85001c946a8a5b3dbe941fe1070f5a2f358fd2662c8f7785c40a7b2286fbd32ebc189b3d3eaef5bf969eb71c7567fab0e22ebce3a95ae1d
|
@@ -26,11 +26,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
26
26
|
repeated :conflicting_commit_ids, :string, 2
|
27
27
|
end
|
28
28
|
add_message "gitaly.ReferencesLockedError" do
|
29
|
+
repeated :refs, :bytes, 1
|
29
30
|
end
|
30
31
|
add_message "gitaly.ReferenceExistsError" do
|
31
32
|
optional :reference_name, :bytes, 1
|
32
33
|
optional :oid, :string, 2
|
33
34
|
end
|
35
|
+
add_message "gitaly.ReferenceNotFoundError" do
|
36
|
+
optional :reference_name, :bytes, 1
|
37
|
+
end
|
34
38
|
add_message "gitaly.ReferenceUpdateError" do
|
35
39
|
optional :reference_name, :bytes, 1
|
36
40
|
optional :old_oid, :string, 2
|
@@ -65,6 +69,7 @@ module Gitaly
|
|
65
69
|
MergeConflictError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.MergeConflictError").msgclass
|
66
70
|
ReferencesLockedError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferencesLockedError").msgclass
|
67
71
|
ReferenceExistsError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceExistsError").msgclass
|
72
|
+
ReferenceNotFoundError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceNotFoundError").msgclass
|
68
73
|
ReferenceUpdateError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceUpdateError").msgclass
|
69
74
|
ResolveRevisionError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ResolveRevisionError").msgclass
|
70
75
|
LimitError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LimitError").msgclass
|
@@ -37,7 +37,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
37
37
|
add_message "gitaly.FetchIntoObjectPoolRequest" do
|
38
38
|
optional :origin, :message, 1, "gitaly.Repository"
|
39
39
|
optional :object_pool, :message, 2, "gitaly.ObjectPool"
|
40
|
-
optional :repack, :bool, 3
|
41
40
|
end
|
42
41
|
add_message "gitaly.FetchIntoObjectPoolResponse" do
|
43
42
|
end
|
@@ -28,7 +28,10 @@ module Gitaly
|
|
28
28
|
rpc :ReduplicateRepository, ::Gitaly::ReduplicateRepositoryRequest, ::Gitaly::ReduplicateRepositoryResponse
|
29
29
|
# This comment is left unintentionally blank.
|
30
30
|
rpc :DisconnectGitAlternates, ::Gitaly::DisconnectGitAlternatesRequest, ::Gitaly::DisconnectGitAlternatesResponse
|
31
|
-
#
|
31
|
+
# FetchIntoObjectPool fetches all references from a pool member into an object pool so that
|
32
|
+
# objects shared between this repository and other pool members can be deduplicated. This RPC
|
33
|
+
# will perform housekeeping tasks after the object pool has been updated to ensure that the pool
|
34
|
+
# is in an optimal state.
|
32
35
|
rpc :FetchIntoObjectPool, ::Gitaly::FetchIntoObjectPoolRequest, ::Gitaly::FetchIntoObjectPoolResponse
|
33
36
|
# This comment is left unintentionally blank.
|
34
37
|
rpc :GetObjectPool, ::Gitaly::GetObjectPoolRequest, ::Gitaly::GetObjectPoolResponse
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -73,6 +73,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
73
73
|
add_message "gitaly.FindTagResponse" do
|
74
74
|
optional :tag, :message, 1, "gitaly.Tag"
|
75
75
|
end
|
76
|
+
add_message "gitaly.FindTagError" do
|
77
|
+
oneof :error do
|
78
|
+
optional :tag_not_found, :message, 1, "gitaly.ReferenceNotFoundError"
|
79
|
+
end
|
80
|
+
end
|
76
81
|
add_message "gitaly.FindAllTagsRequest" do
|
77
82
|
optional :repository, :message, 1, "gitaly.Repository"
|
78
83
|
optional :sort_by, :message, 2, "gitaly.FindAllTagsRequest.SortBy"
|
@@ -239,6 +244,7 @@ module Gitaly
|
|
239
244
|
FindAllBranchesResponse::Branch = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse.Branch").msgclass
|
240
245
|
FindTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagRequest").msgclass
|
241
246
|
FindTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagResponse").msgclass
|
247
|
+
FindTagError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagError").msgclass
|
242
248
|
FindAllTagsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest").msgclass
|
243
249
|
FindAllTagsRequest::SortBy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest.SortBy").msgclass
|
244
250
|
FindAllTagsRequest::SortBy::Key = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest.SortBy.Key").enummodule
|
@@ -27,7 +27,9 @@ module Gitaly
|
|
27
27
|
rpc :FindAllBranches, ::Gitaly::FindAllBranchesRequest, stream(::Gitaly::FindAllBranchesResponse)
|
28
28
|
# Returns a stream of tags repository has.
|
29
29
|
rpc :FindAllTags, ::Gitaly::FindAllTagsRequest, stream(::Gitaly::FindAllTagsResponse)
|
30
|
-
#
|
30
|
+
# FindTag looks up a tag by its name and returns it to the caller if it exists. This RPC supports
|
31
|
+
# both lightweight and annotated tags. Note: this RPC returns an `Internal` error if the tag was
|
32
|
+
# not found.
|
31
33
|
rpc :FindTag, ::Gitaly::FindTagRequest, ::Gitaly::FindTagResponse
|
32
34
|
# This comment is left unintentionally blank.
|
33
35
|
rpc :FindAllRemoteBranches, ::Gitaly::FindAllRemoteBranchesRequest, stream(::Gitaly::FindAllRemoteBranchesResponse)
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: server.proto
|
3
3
|
|
4
|
+
require 'google/protobuf/duration_pb'
|
4
5
|
require 'lint_pb'
|
5
6
|
require 'google/protobuf'
|
6
7
|
|
@@ -38,6 +39,24 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
38
39
|
add_message "gitaly.ClockSyncedResponse" do
|
39
40
|
optional :synced, :bool, 1
|
40
41
|
end
|
42
|
+
add_message "gitaly.ReadinessCheckRequest" do
|
43
|
+
optional :timeout, :message, 1, "google.protobuf.Duration"
|
44
|
+
end
|
45
|
+
add_message "gitaly.ReadinessCheckResponse" do
|
46
|
+
oneof :Result do
|
47
|
+
optional :ok_response, :message, 1, "gitaly.ReadinessCheckResponse.Ok"
|
48
|
+
optional :failure_response, :message, 2, "gitaly.ReadinessCheckResponse.Failure"
|
49
|
+
end
|
50
|
+
end
|
51
|
+
add_message "gitaly.ReadinessCheckResponse.Ok" do
|
52
|
+
end
|
53
|
+
add_message "gitaly.ReadinessCheckResponse.Failure" do
|
54
|
+
repeated :failed_checks, :message, 1, "gitaly.ReadinessCheckResponse.Failure.Response"
|
55
|
+
end
|
56
|
+
add_message "gitaly.ReadinessCheckResponse.Failure.Response" do
|
57
|
+
optional :name, :string, 1
|
58
|
+
optional :error_message, :string, 2
|
59
|
+
end
|
41
60
|
end
|
42
61
|
end
|
43
62
|
|
@@ -50,4 +69,9 @@ module Gitaly
|
|
50
69
|
DiskStatisticsResponse::StorageStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiskStatisticsResponse.StorageStatus").msgclass
|
51
70
|
ClockSyncedRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ClockSyncedRequest").msgclass
|
52
71
|
ClockSyncedResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ClockSyncedResponse").msgclass
|
72
|
+
ReadinessCheckRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReadinessCheckRequest").msgclass
|
73
|
+
ReadinessCheckResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReadinessCheckResponse").msgclass
|
74
|
+
ReadinessCheckResponse::Ok = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReadinessCheckResponse.Ok").msgclass
|
75
|
+
ReadinessCheckResponse::Failure = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReadinessCheckResponse.Failure").msgclass
|
76
|
+
ReadinessCheckResponse::Failure::Response = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReadinessCheckResponse.Failure.Response").msgclass
|
53
77
|
end
|
@@ -22,6 +22,8 @@ module Gitaly
|
|
22
22
|
# ClockSynced checks if machine clock is synced
|
23
23
|
# (the offset is less that the one passed in the request).
|
24
24
|
rpc :ClockSynced, ::Gitaly::ClockSyncedRequest, ::Gitaly::ClockSyncedResponse
|
25
|
+
# ReadinessCheck runs the set of the checks to make sure service is in operational state.
|
26
|
+
rpc :ReadinessCheck, ::Gitaly::ReadinessCheckRequest, ::Gitaly::ReadinessCheckResponse
|
25
27
|
end
|
26
28
|
|
27
29
|
Stub = Service.rpc_stub_class
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 15.3.0.pre.
|
4
|
+
version: 15.3.0.pre.rc4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
94
|
- !ruby/object:Gem::Version
|
95
95
|
version: 1.3.1
|
96
96
|
requirements: []
|
97
|
-
rubygems_version: 3.
|
97
|
+
rubygems_version: 3.3.18
|
98
98
|
signing_key:
|
99
99
|
specification_version: 4
|
100
100
|
summary: Auto-generated gRPC client for gitaly
|