Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Strokov <pstrokov@gitlab.com>2021-02-17 17:19:36 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2021-02-20 10:09:36 +0300
commit736c7f6637ce19e30a3197dbd6f0f5d1b479b588 (patch)
tree37c79b9511254181aac77ff8856262f157ea1a92 /proto/praefect.proto
parentc3c0eea80f950d1e4c2944de258fa6e727681cad (diff)
Reconciliation sub-command performs as much as possible
We should not stop performing reconciliation if operation failed for one of the repositories instead we should proceed with other repositories as well and report any occurred errors back to the user. Part of: https://gitlab.com/gitlab-org/gitaly/-/issues/3032
Diffstat (limited to 'proto/praefect.proto')
-rw-r--r--proto/praefect.proto2
1 files changed, 2 insertions, 0 deletions
diff --git a/proto/praefect.proto b/proto/praefect.proto
index e9676d20c..60d857233 100644
--- a/proto/praefect.proto
+++ b/proto/praefect.proto
@@ -132,4 +132,6 @@ message ConsistencyCheckResponse {
uint64 repl_job_id = 4;
// If the reference storage was not specified, reply with the reference used
string reference_storage = 5;
+ // The list of errors that appeared during the operation execution for the current repository.
+ repeated string errors = 6;
}