gitaly 15.3.0.pre.rc3 → 15.3.0.pre.rc4
Sign up to get free protection for your applications and to get access to all the features.
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,6 +26,7 @@ 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
|
@@ -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-08-
|
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
|