gitaly 13.1.0.pre.rc3 → 13.1.0.pre.rc4
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of gitaly might be problematic. Click here for more details.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96feaf1a5a7304f5a39cd9e59046d5052360905264ff683af782cd4757b96315
|
4
|
+
data.tar.gz: 5d75066b6e74bc20bbc4e5ab410b6e1d26eda1538ca6d564893d83ba9fc24331
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb764689cd01fbded921d9bcd9ffdc9bb2286ce15f3221a6048ec2dc994ed0e71c89d35db587e0b14f5172c1252cc6fe157527168e881bc99de53fd6bb0a0131
|
7
|
+
data.tar.gz: 32f9d5c1233aeecaf2c82d49e8d1662214e747dbd9d9f707208ff3c1361ba177abaa88dd16f3949f5dcd44892ce07999c38d64904e8803c720bc962a2566e348
|
@@ -194,6 +194,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
194
194
|
optional :repository, :message, 1, "gitaly.Repository"
|
195
195
|
optional :revision, :bytes, 2
|
196
196
|
optional :path, :bytes, 3
|
197
|
+
optional :literal_pathspec, :bool, 4
|
197
198
|
end
|
198
199
|
add_message "gitaly.LastCommitForPathResponse" do
|
199
200
|
optional :commit, :message, 1, "gitaly.GitCommit"
|
@@ -13,11 +13,18 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
13
13
|
add_message "gitaly.EnableWritesResponse" do
|
14
14
|
end
|
15
15
|
add_message "gitaly.DatalossCheckRequest" do
|
16
|
-
optional :
|
17
|
-
optional :to, :message, 2, "google.protobuf.Timestamp"
|
16
|
+
optional :virtual_storage, :string, 1
|
18
17
|
end
|
19
18
|
add_message "gitaly.DatalossCheckResponse" do
|
20
|
-
|
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
|
21
28
|
end
|
22
29
|
add_message "gitaly.RepositoryReplicasRequest" do
|
23
30
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -50,6 +57,7 @@ module Gitaly
|
|
50
57
|
EnableWritesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.EnableWritesResponse").msgclass
|
51
58
|
DatalossCheckRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckRequest").msgclass
|
52
59
|
DatalossCheckResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse").msgclass
|
60
|
+
DatalossCheckResponse::Nodes = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse.Nodes").msgclass
|
53
61
|
RepositoryReplicasRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasRequest").msgclass
|
54
62
|
RepositoryReplicasResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse").msgclass
|
55
63
|
RepositoryReplicasResponse::RepositoryDetails = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse.RepositoryDetails").msgclass
|
@@ -20,9 +20,8 @@ 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
|
27
26
|
# EnableWrites enables writes for a storage that was switched to a read-only mode
|
28
27
|
# following a failover.
|
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.1.0.pre.
|
4
|
+
version: 13.1.0.pre.rc4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -78,7 +78,7 @@ homepage: https://gitlab.com/gitlab-org/gitaly
|
|
78
78
|
licenses:
|
79
79
|
- MIT
|
80
80
|
metadata: {}
|
81
|
-
post_install_message:
|
81
|
+
post_install_message:
|
82
82
|
rdoc_options: []
|
83
83
|
require_paths:
|
84
84
|
- ruby/proto
|
@@ -93,8 +93,8 @@ 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.
|
97
|
-
signing_key:
|
96
|
+
rubygems_version: 3.0.8
|
97
|
+
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Auto-generated gRPC client for gitaly
|
100
100
|
test_files: []
|