gitaly 13.0.0.pre.rc1 → 13.2.0.pre.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of gitaly might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ruby/proto/README.md +1 -1
- data/ruby/proto/gitaly/commit_pb.rb +13 -0
- data/ruby/proto/gitaly/hook_pb.rb +1 -0
- data/ruby/proto/gitaly/internal_pb.rb +0 -1
- data/ruby/proto/gitaly/namespace_pb.rb +0 -1
- data/ruby/proto/gitaly/praefect_pb.rb +20 -3
- data/ruby/proto/gitaly/praefect_services_pb.rb +5 -3
- data/ruby/proto/gitaly/ref_pb.rb +1 -0
- data/ruby/proto/gitaly/remote_pb.rb +1 -0
- data/ruby/proto/gitaly/repository-service_pb.rb +14 -0
- data/ruby/proto/gitaly/repository-service_services_pb.rb +2 -0
- data/ruby/proto/gitaly/server_pb.rb +1 -1
- data/ruby/proto/gitaly/shared_pb.rb +9 -0
- data/ruby/proto/gitaly/transaction_pb.rb +7 -24
- data/ruby/proto/gitaly/transaction_services_pb.rb +1 -3
- 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: 1b3be8f67efad685779e6b429da5298fa04356b76eea69daaa06f96d3be9421a
|
4
|
+
data.tar.gz: 58e3d49c8fe1642905801270ba5cad8161c2482185466717d1dadba88d25d1d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f42c0c9b82cc330ebf7c9d4826602778493dd1cf1e813b2f0fec92d86680c94b8928972fb483398060d1deb2f7d9f92ef84bc68d2435e8c603111e59f9f0eab
|
7
|
+
data.tar.gz: 5cda892dcdd458b8421bab880c8f78d41b10f369edea7ee5dc37a8eb9e9f7e3098c0985d5f60867a21606ec38338d5fc26f27699d4997bceee944956c7b5e72e
|
data/ruby/proto/README.md
CHANGED
@@ -60,6 +60,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
60
60
|
optional :max_count, :int32, 6
|
61
61
|
optional :all, :bool, 7
|
62
62
|
optional :first_parent, :bool, 8
|
63
|
+
optional :global_options, :message, 9, "gitaly.GlobalOptions"
|
63
64
|
end
|
64
65
|
add_message "gitaly.CountCommitsResponse" do
|
65
66
|
optional :count, :int32, 1
|
@@ -124,6 +125,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
124
125
|
end
|
125
126
|
add_message "gitaly.ListCommitsByRefNameResponse" do
|
126
127
|
repeated :commits, :message, 1, "gitaly.GitCommit"
|
128
|
+
repeated :commit_refs, :message, 2, "gitaly.ListCommitsByRefNameResponse.CommitForRef"
|
129
|
+
end
|
130
|
+
add_message "gitaly.ListCommitsByRefNameResponse.CommitForRef" do
|
131
|
+
optional :commit, :message, 1, "gitaly.GitCommit"
|
132
|
+
optional :ref_name, :bytes, 2
|
127
133
|
end
|
128
134
|
add_message "gitaly.FindAllCommitsRequest" do
|
129
135
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -155,6 +161,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
155
161
|
optional :first_parent, :bool, 12
|
156
162
|
optional :author, :bytes, 13
|
157
163
|
optional :order, :enum, 14, "gitaly.FindCommitsRequest.Order"
|
164
|
+
optional :global_options, :message, 15, "gitaly.GlobalOptions"
|
158
165
|
end
|
159
166
|
add_enum "gitaly.FindCommitsRequest.Order" do
|
160
167
|
value :NONE, 0
|
@@ -189,6 +196,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
189
196
|
optional :repository, :message, 1, "gitaly.Repository"
|
190
197
|
optional :revision, :bytes, 2
|
191
198
|
optional :path, :bytes, 3
|
199
|
+
optional :literal_pathspec, :bool, 4
|
200
|
+
optional :global_options, :message, 5, "gitaly.GlobalOptions"
|
192
201
|
end
|
193
202
|
add_message "gitaly.LastCommitForPathResponse" do
|
194
203
|
optional :commit, :message, 1, "gitaly.GitCommit"
|
@@ -199,6 +208,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
199
208
|
optional :path, :bytes, 3
|
200
209
|
optional :limit, :int32, 4
|
201
210
|
optional :offset, :int32, 5
|
211
|
+
optional :literal_pathspec, :bool, 6
|
212
|
+
optional :global_options, :message, 7, "gitaly.GlobalOptions"
|
202
213
|
end
|
203
214
|
add_message "gitaly.ListLastCommitsForTreeResponse" do
|
204
215
|
repeated :commits, :message, 1, "gitaly.ListLastCommitsForTreeResponse.CommitForTree"
|
@@ -214,6 +225,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
214
225
|
optional :limit, :int32, 4
|
215
226
|
optional :path, :bytes, 5
|
216
227
|
optional :query, :string, 6
|
228
|
+
optional :global_options, :message, 7, "gitaly.GlobalOptions"
|
217
229
|
end
|
218
230
|
add_message "gitaly.CommitsByMessageResponse" do
|
219
231
|
repeated :commits, :message, 1, "gitaly.GitCommit"
|
@@ -278,6 +290,7 @@ module Gitaly
|
|
278
290
|
ListCommitsByOidResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByOidResponse").msgclass
|
279
291
|
ListCommitsByRefNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByRefNameRequest").msgclass
|
280
292
|
ListCommitsByRefNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByRefNameResponse").msgclass
|
293
|
+
ListCommitsByRefNameResponse::CommitForRef = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByRefNameResponse.CommitForRef").msgclass
|
281
294
|
FindAllCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest").msgclass
|
282
295
|
FindAllCommitsRequest::Order = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest.Order").enummodule
|
283
296
|
FindAllCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsResponse").msgclass
|
@@ -10,6 +10,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
10
10
|
optional :repository, :message, 1, "gitaly.Repository"
|
11
11
|
repeated :environment_variables, :string, 2
|
12
12
|
optional :stdin, :bytes, 4
|
13
|
+
repeated :git_push_options, :string, 5
|
13
14
|
end
|
14
15
|
add_message "gitaly.PreReceiveHookResponse" do
|
15
16
|
optional :stdout, :bytes, 1
|
@@ -7,12 +7,24 @@ require 'lint_pb'
|
|
7
7
|
require 'shared_pb'
|
8
8
|
require 'google/protobuf/timestamp_pb'
|
9
9
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
|
+
add_message "gitaly.EnableWritesRequest" do
|
11
|
+
optional :virtual_storage, :string, 1
|
12
|
+
end
|
13
|
+
add_message "gitaly.EnableWritesResponse" do
|
14
|
+
end
|
10
15
|
add_message "gitaly.DatalossCheckRequest" do
|
11
|
-
optional :
|
12
|
-
optional :to, :message, 2, "google.protobuf.Timestamp"
|
16
|
+
optional :virtual_storage, :string, 1
|
13
17
|
end
|
14
18
|
add_message "gitaly.DatalossCheckResponse" do
|
15
|
-
|
19
|
+
optional :virtual_storage, :string, 1
|
20
|
+
optional :previous_writable_primary, :string, 2
|
21
|
+
optional :current_primary, :string, 3
|
22
|
+
optional :is_read_only, :bool, 4
|
23
|
+
repeated :outdated_nodes, :message, 5, "gitaly.DatalossCheckResponse.Nodes"
|
24
|
+
end
|
25
|
+
add_message "gitaly.DatalossCheckResponse.Nodes" do
|
26
|
+
optional :relative_path, :string, 1
|
27
|
+
repeated :nodes, :string, 2
|
16
28
|
end
|
17
29
|
add_message "gitaly.RepositoryReplicasRequest" do
|
18
30
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -29,18 +41,23 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
29
41
|
optional :virtual_storage, :string, 1
|
30
42
|
optional :target_storage, :string, 2
|
31
43
|
optional :reference_storage, :string, 3
|
44
|
+
optional :disable_reconcilliation, :bool, 4
|
32
45
|
end
|
33
46
|
add_message "gitaly.ConsistencyCheckResponse" do
|
34
47
|
optional :repo_relative_path, :string, 1
|
35
48
|
optional :target_checksum, :string, 2
|
36
49
|
optional :reference_checksum, :string, 3
|
37
50
|
optional :repl_job_id, :uint64, 4
|
51
|
+
optional :reference_storage, :string, 5
|
38
52
|
end
|
39
53
|
end
|
40
54
|
|
41
55
|
module Gitaly
|
56
|
+
EnableWritesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.EnableWritesRequest").msgclass
|
57
|
+
EnableWritesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.EnableWritesResponse").msgclass
|
42
58
|
DatalossCheckRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckRequest").msgclass
|
43
59
|
DatalossCheckResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse").msgclass
|
60
|
+
DatalossCheckResponse::Nodes = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse.Nodes").msgclass
|
44
61
|
RepositoryReplicasRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasRequest").msgclass
|
45
62
|
RepositoryReplicasResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse").msgclass
|
46
63
|
RepositoryReplicasResponse::RepositoryDetails = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse.RepositoryDetails").msgclass
|
@@ -20,10 +20,12 @@ module Gitaly
|
|
20
20
|
# back indicating which repos are consistent with the primary and which ones
|
21
21
|
# need repair.
|
22
22
|
rpc :ConsistencyCheck, ConsistencyCheckRequest, stream(ConsistencyCheckResponse)
|
23
|
-
# DatalossCheck
|
24
|
-
#
|
25
|
-
# impact of a primary node failure.
|
23
|
+
# DatalossCheck checks for nodes which are not up to date with the previous writable primary.
|
24
|
+
# This indicates possible data loss after a failover event.
|
26
25
|
rpc :DatalossCheck, DatalossCheckRequest, DatalossCheckResponse
|
26
|
+
# EnableWrites enables writes for a storage that was switched to a read-only mode
|
27
|
+
# following a failover.
|
28
|
+
rpc :EnableWrites, EnableWritesRequest, EnableWritesResponse
|
27
29
|
end
|
28
30
|
|
29
31
|
Stub = Service.rpc_stub_class
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -45,6 +45,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
45
45
|
add_message "gitaly.FindLocalBranchesRequest" do
|
46
46
|
optional :repository, :message, 1, "gitaly.Repository"
|
47
47
|
optional :sort_by, :enum, 2, "gitaly.FindLocalBranchesRequest.SortBy"
|
48
|
+
optional :pagination_params, :message, 3, "gitaly.PaginationParameter"
|
48
49
|
end
|
49
50
|
add_enum "gitaly.FindLocalBranchesRequest.SortBy" do
|
50
51
|
value :NAME, 0
|
@@ -41,6 +41,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
41
41
|
end
|
42
42
|
add_message "gitaly.FindRemoteRepositoryRequest" do
|
43
43
|
optional :remote, :string, 1
|
44
|
+
optional :storage_name, :string, 2
|
44
45
|
end
|
45
46
|
add_message "gitaly.FindRemoteRepositoryResponse" do
|
46
47
|
optional :exists, :bool, 1
|
@@ -29,6 +29,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
29
29
|
end
|
30
30
|
add_message "gitaly.GarbageCollectResponse" do
|
31
31
|
end
|
32
|
+
add_message "gitaly.WriteCommitGraphRequest" do
|
33
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
34
|
+
end
|
35
|
+
add_message "gitaly.WriteCommitGraphResponse" do
|
36
|
+
end
|
32
37
|
add_message "gitaly.CleanupRequest" do
|
33
38
|
optional :repository, :message, 1, "gitaly.Repository"
|
34
39
|
end
|
@@ -316,6 +321,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
316
321
|
end
|
317
322
|
add_message "gitaly.ReplicateRepositoryResponse" do
|
318
323
|
end
|
324
|
+
add_message "gitaly.OptimizeRepositoryRequest" do
|
325
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
326
|
+
end
|
327
|
+
add_message "gitaly.OptimizeRepositoryResponse" do
|
328
|
+
end
|
319
329
|
end
|
320
330
|
|
321
331
|
module Gitaly
|
@@ -327,6 +337,8 @@ module Gitaly
|
|
327
337
|
RepackFullResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullResponse").msgclass
|
328
338
|
GarbageCollectRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectRequest").msgclass
|
329
339
|
GarbageCollectResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectResponse").msgclass
|
340
|
+
WriteCommitGraphRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphRequest").msgclass
|
341
|
+
WriteCommitGraphResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphResponse").msgclass
|
330
342
|
CleanupRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupRequest").msgclass
|
331
343
|
CleanupResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupResponse").msgclass
|
332
344
|
RepositorySizeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeRequest").msgclass
|
@@ -404,4 +416,6 @@ module Gitaly
|
|
404
416
|
RenameRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RenameRepositoryResponse").msgclass
|
405
417
|
ReplicateRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReplicateRepositoryRequest").msgclass
|
406
418
|
ReplicateRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReplicateRepositoryResponse").msgclass
|
419
|
+
OptimizeRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OptimizeRepositoryRequest").msgclass
|
420
|
+
OptimizeRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OptimizeRepositoryResponse").msgclass
|
407
421
|
end
|
@@ -18,6 +18,7 @@ module Gitaly
|
|
18
18
|
rpc :RepackIncremental, RepackIncrementalRequest, RepackIncrementalResponse
|
19
19
|
rpc :RepackFull, RepackFullRequest, RepackFullResponse
|
20
20
|
rpc :GarbageCollect, GarbageCollectRequest, GarbageCollectResponse
|
21
|
+
rpc :WriteCommitGraph, WriteCommitGraphRequest, WriteCommitGraphResponse
|
21
22
|
rpc :RepositorySize, RepositorySizeRequest, RepositorySizeResponse
|
22
23
|
rpc :ApplyGitattributes, ApplyGitattributesRequest, ApplyGitattributesResponse
|
23
24
|
rpc :FetchRemote, FetchRemoteRequest, FetchRemoteResponse
|
@@ -54,6 +55,7 @@ module Gitaly
|
|
54
55
|
rpc :RemoveRepository, RemoveRepositoryRequest, RemoveRepositoryResponse
|
55
56
|
rpc :RenameRepository, RenameRepositoryRequest, RenameRepositoryResponse
|
56
57
|
rpc :ReplicateRepository, ReplicateRepositoryRequest, ReplicateRepositoryResponse
|
58
|
+
rpc :OptimizeRepository, OptimizeRepositoryRequest, OptimizeRepositoryResponse
|
57
59
|
end
|
58
60
|
|
59
61
|
Stub = Service.rpc_stub_class
|
@@ -4,7 +4,6 @@
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
6
|
require 'lint_pb'
|
7
|
-
require 'shared_pb'
|
8
7
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
8
|
add_message "gitaly.ServerInfoRequest" do
|
10
9
|
end
|
@@ -19,6 +18,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
19
18
|
optional :writeable, :bool, 3
|
20
19
|
optional :fs_type, :string, 4
|
21
20
|
optional :filesystem_id, :string, 5
|
21
|
+
optional :replication_factor, :uint32, 6
|
22
22
|
end
|
23
23
|
add_message "gitaly.DiskStatisticsRequest" do
|
24
24
|
end
|
@@ -55,6 +55,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
55
55
|
add_message "gitaly.ObjectPool" do
|
56
56
|
optional :repository, :message, 1, "gitaly.Repository"
|
57
57
|
end
|
58
|
+
add_message "gitaly.PaginationParameter" do
|
59
|
+
optional :page_token, :string, 1
|
60
|
+
optional :limit, :int32, 2
|
61
|
+
end
|
62
|
+
add_message "gitaly.GlobalOptions" do
|
63
|
+
optional :literal_pathspecs, :bool, 1
|
64
|
+
end
|
58
65
|
add_enum "gitaly.ObjectType" do
|
59
66
|
value :UNKNOWN, 0
|
60
67
|
value :COMMIT, 1
|
@@ -78,6 +85,8 @@ module Gitaly
|
|
78
85
|
Tag = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Tag").msgclass
|
79
86
|
User = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.User").msgclass
|
80
87
|
ObjectPool = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectPool").msgclass
|
88
|
+
PaginationParameter = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PaginationParameter").msgclass
|
89
|
+
GlobalOptions = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GlobalOptions").msgclass
|
81
90
|
ObjectType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectType").enummodule
|
82
91
|
SignatureType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SignatureType").enummodule
|
83
92
|
end
|
@@ -6,40 +6,23 @@ require 'google/protobuf'
|
|
6
6
|
require 'lint_pb'
|
7
7
|
require 'shared_pb'
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
-
add_message "gitaly.
|
10
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
11
|
-
repeated :nodes, :string, 2
|
12
|
-
end
|
13
|
-
add_message "gitaly.RegisterTransactionResponse" do
|
14
|
-
optional :transaction_id, :uint64, 1
|
15
|
-
end
|
16
|
-
add_message "gitaly.StartTransactionRequest" do
|
9
|
+
add_message "gitaly.VoteTransactionRequest" do
|
17
10
|
optional :repository, :message, 1, "gitaly.Repository"
|
18
11
|
optional :transaction_id, :uint64, 2
|
19
12
|
optional :node, :string, 3
|
20
13
|
optional :reference_updates_hash, :bytes, 4
|
21
14
|
end
|
22
|
-
add_message "gitaly.
|
23
|
-
optional :state, :enum, 1, "gitaly.
|
15
|
+
add_message "gitaly.VoteTransactionResponse" do
|
16
|
+
optional :state, :enum, 1, "gitaly.VoteTransactionResponse.TransactionState"
|
24
17
|
end
|
25
|
-
add_enum "gitaly.
|
18
|
+
add_enum "gitaly.VoteTransactionResponse.TransactionState" do
|
26
19
|
value :COMMIT, 0
|
27
20
|
value :ABORT, 1
|
28
21
|
end
|
29
|
-
add_message "gitaly.CancelTransactionRequest" do
|
30
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
31
|
-
optional :transaction_id, :uint64, 2
|
32
|
-
end
|
33
|
-
add_message "gitaly.CancelTransactionResponse" do
|
34
|
-
end
|
35
22
|
end
|
36
23
|
|
37
24
|
module Gitaly
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
StartTransactionResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.StartTransactionResponse").msgclass
|
42
|
-
StartTransactionResponse::TransactionState = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.StartTransactionResponse.TransactionState").enummodule
|
43
|
-
CancelTransactionRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CancelTransactionRequest").msgclass
|
44
|
-
CancelTransactionResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CancelTransactionResponse").msgclass
|
25
|
+
VoteTransactionRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionRequest").msgclass
|
26
|
+
VoteTransactionResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionResponse").msgclass
|
27
|
+
VoteTransactionResponse::TransactionState = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionResponse.TransactionState").enummodule
|
45
28
|
end
|
@@ -14,9 +14,7 @@ module Gitaly
|
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.RefTransaction'
|
16
16
|
|
17
|
-
rpc :
|
18
|
-
rpc :StartTransaction, StartTransactionRequest, StartTransactionResponse
|
19
|
-
rpc :CancelTransaction, CancelTransactionRequest, CancelTransactionResponse
|
17
|
+
rpc :VoteTransaction, VoteTransactionRequest, VoteTransactionResponse
|
20
18
|
end
|
21
19
|
|
22
20
|
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: 13.
|
4
|
+
version: 13.2.0.pre.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
93
|
- !ruby/object:Gem::Version
|
94
94
|
version: 1.3.1
|
95
95
|
requirements: []
|
96
|
-
rubygems_version: 3.0.
|
96
|
+
rubygems_version: 3.0.3
|
97
97
|
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Auto-generated gRPC client for gitaly
|