gitaly 15.3.0.pre.rc2 → 15.4.0.pre.rc1
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 +1 -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 +4 -1
- data/ruby/proto/gitaly/repository_pb.rb +4 -0
- data/ruby/proto/gitaly/server_pb.rb +25 -0
- data/ruby/proto/gitaly/server_services_pb.rb +2 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 742c7bb6bbd2b64c185258bbce50ef85bff71563eb0bd8bcbaf918d172b83584
|
4
|
+
data.tar.gz: 452b26af7ffa979c01bb5381fba67c9e09e92e834298a73d28a4e986c0a2137b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5071e4857d9a04fcbc3e6c191ea0e306777cca437b698881a553aad38ebdf5501d25e1d5c2927320de0cf75570c41612cf62f12b1429e23832931817e8f01b21
|
7
|
+
data.tar.gz: bd5b15cdadbb899c5d14713fc3654431e7bbbbc7513fdf460bb79e296d6770856dd96b5b34a39778b4aad877955450ab4f2abd963c8759fc0ab762c9e64d7875
|
@@ -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
|
@@ -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
@@ -74,7 +74,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
74
74
|
optional :tag, :message, 1, "gitaly.Tag"
|
75
75
|
end
|
76
76
|
add_message "gitaly.FindTagError" do
|
77
|
-
|
77
|
+
oneof :error do
|
78
|
+
optional :tag_not_found, :message, 1, "gitaly.ReferenceNotFoundError"
|
79
|
+
end
|
78
80
|
end
|
79
81
|
add_message "gitaly.FindAllTagsRequest" do
|
80
82
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -88,6 +90,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
88
90
|
add_enum "gitaly.FindAllTagsRequest.SortBy.Key" do
|
89
91
|
value :REFNAME, 0
|
90
92
|
value :CREATORDATE, 1
|
93
|
+
value :VERSION_REFNAME, 2
|
91
94
|
end
|
92
95
|
add_message "gitaly.FindAllTagsResponse" do
|
93
96
|
repeated :tags, :message, 1, "gitaly.Tag"
|
@@ -202,6 +202,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
202
202
|
end
|
203
203
|
add_message "gitaly.FindLicenseResponse" do
|
204
204
|
optional :license_short_name, :string, 1
|
205
|
+
optional :license_name, :string, 2
|
206
|
+
optional :license_url, :string, 3
|
207
|
+
optional :license_path, :string, 4
|
208
|
+
optional :license_nickname, :string, 5
|
205
209
|
end
|
206
210
|
add_message "gitaly.GetInfoAttributesRequest" do
|
207
211
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -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
|
|
@@ -34,10 +35,29 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
34
35
|
add_message "gitaly.ClockSyncedRequest" do
|
35
36
|
optional :ntp_host, :string, 1
|
36
37
|
optional :drift_threshold_millis, :int64, 2
|
38
|
+
optional :drift_threshold, :message, 3, "google.protobuf.Duration"
|
37
39
|
end
|
38
40
|
add_message "gitaly.ClockSyncedResponse" do
|
39
41
|
optional :synced, :bool, 1
|
40
42
|
end
|
43
|
+
add_message "gitaly.ReadinessCheckRequest" do
|
44
|
+
optional :timeout, :message, 1, "google.protobuf.Duration"
|
45
|
+
end
|
46
|
+
add_message "gitaly.ReadinessCheckResponse" do
|
47
|
+
oneof :Result do
|
48
|
+
optional :ok_response, :message, 1, "gitaly.ReadinessCheckResponse.Ok"
|
49
|
+
optional :failure_response, :message, 2, "gitaly.ReadinessCheckResponse.Failure"
|
50
|
+
end
|
51
|
+
end
|
52
|
+
add_message "gitaly.ReadinessCheckResponse.Ok" do
|
53
|
+
end
|
54
|
+
add_message "gitaly.ReadinessCheckResponse.Failure" do
|
55
|
+
repeated :failed_checks, :message, 1, "gitaly.ReadinessCheckResponse.Failure.Response"
|
56
|
+
end
|
57
|
+
add_message "gitaly.ReadinessCheckResponse.Failure.Response" do
|
58
|
+
optional :name, :string, 1
|
59
|
+
optional :error_message, :string, 2
|
60
|
+
end
|
41
61
|
end
|
42
62
|
end
|
43
63
|
|
@@ -50,4 +70,9 @@ module Gitaly
|
|
50
70
|
DiskStatisticsResponse::StorageStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiskStatisticsResponse.StorageStatus").msgclass
|
51
71
|
ClockSyncedRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ClockSyncedRequest").msgclass
|
52
72
|
ClockSyncedResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ClockSyncedResponse").msgclass
|
73
|
+
ReadinessCheckRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReadinessCheckRequest").msgclass
|
74
|
+
ReadinessCheckResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReadinessCheckResponse").msgclass
|
75
|
+
ReadinessCheckResponse::Ok = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReadinessCheckResponse.Ok").msgclass
|
76
|
+
ReadinessCheckResponse::Failure = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReadinessCheckResponse.Failure").msgclass
|
77
|
+
ReadinessCheckResponse::Failure::Response = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReadinessCheckResponse.Failure.Response").msgclass
|
53
78
|
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.
|
4
|
+
version: 15.4.0.pre.rc1
|
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-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|