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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-05-09 13:23:52 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-05-09 13:23:52 +0300
commit9bb6fb420b75ad7657a30751ba7df7c9bf1e0060 (patch)
tree609626f18144fab34a44f8bab360d527f4dab1aa /proto/transaction.proto
parent58aa3bc8b0f8a1dd7fd9ec006ff870d59d8c01be (diff)
proto: Enforce comment-linting for message fields
Enforce that message fields must have a comment and add a placeholder for all instances where such a comment is missing.
Diffstat (limited to 'proto/transaction.proto')
-rw-r--r--proto/transaction.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/proto/transaction.proto b/proto/transaction.proto
index 992178165..ed22eea63 100644
--- a/proto/transaction.proto
+++ b/proto/transaction.proto
@@ -59,6 +59,7 @@ message VoteTransactionRequest {
COMMITTED_PHASE = 2;
};
+ // This comment is left unintentionally blank.
Repository repository = 1[(target_repository)=true];
// ID of the transaction we're processing
uint64 transaction_id = 2;
@@ -83,11 +84,13 @@ message VoteTransactionResponse {
STOP = 2;
}
+ // This comment is left unintentionally blank.
TransactionState state = 1;
}
// This comment is left unintentionally blank.
message StopTransactionRequest {
+ // This comment is left unintentionally blank.
Repository repository = 1[(target_repository)=true];
// ID of the transaction we're processing
uint64 transaction_id = 2;