gitaly 15.3.0.pre.rc2 → 15.3.0.pre.rc3
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: 8cc73bc0829e39a9dab313b5af35b6f1f3c2ae3e2b0c2a8993db7dd155b85e27
|
4
|
+
data.tar.gz: d7fcf06f2730c494a3726b97fdb737bbde9e20f1c82e0a2f6f54ea0fdb89edde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0c65d13b66e1367014695c95246e233ad9ed8166509a55031f18203a3cd9171c11f3172618908a3ce9022cd20976a258be13e8f9d221fba80c87579583df752
|
7
|
+
data.tar.gz: a55493b0c5f3de5f40b4a60fc0cbe641bbff36f8f4c615884b15dec5526d75a965449d08ecefaae5b9ebd13292b3545c70042637cb7e63026bbffe3144be796f
|
@@ -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"
|