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-02 12:42:47 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-05-09 13:16:44 +0300
commite4b7df2292b4eeeefa4f70e77e2ad34a60de0c76 (patch)
tree260f42064d3e51093fdf1332827a13184661433b /proto/ssh.proto
parent4c7a9be67a16746bf6f44a68caf75a7cffd5e969 (diff)
proto: Enforce comment-linting for message definitions
Enforce that message definitions must have a comment and add a placeholder for all instances where such a comment is missing.
Diffstat (limited to 'proto/ssh.proto')
-rw-r--r--proto/ssh.proto8
1 files changed, 8 insertions, 0 deletions
diff --git a/proto/ssh.proto b/proto/ssh.proto
index 45b64c004..1621cff2b 100644
--- a/proto/ssh.proto
+++ b/proto/ssh.proto
@@ -38,6 +38,7 @@ service SSHService {
}
}
+// This comment is left unintentionally blank.
message SSHUploadPackRequest {
// 'repository' must be present in the first message.
Repository repository = 1 [(target_repository)=true];
@@ -53,6 +54,7 @@ message SSHUploadPackRequest {
string git_protocol = 5;
}
+// This comment is left unintentionally blank.
message SSHUploadPackResponse {
// A chunk of raw data from 'git upload-pack' standard output
bytes stdout = 1;
@@ -63,6 +65,7 @@ message SSHUploadPackResponse {
ExitStatus exit_status = 3;
}
+// This comment is left unintentionally blank.
message SSHUploadPackWithSidechannelRequest {
// 'repository' must be present in the first message.
Repository repository = 1 [(target_repository)=true];
@@ -73,9 +76,11 @@ message SSHUploadPackWithSidechannelRequest {
string git_protocol = 3;
}
+// This comment is left unintentionally blank.
message SSHUploadPackWithSidechannelResponse {
}
+// This comment is left unintentionally blank.
message SSHReceivePackRequest {
// 'repository' must be present in the first message.
Repository repository = 1 [(target_repository)=true];
@@ -94,6 +99,7 @@ message SSHReceivePackRequest {
repeated string git_config_options = 7;
}
+// This comment is left unintentionally blank.
message SSHReceivePackResponse {
// A chunk of raw data from 'git receive-pack' standard output
bytes stdout = 1;
@@ -104,6 +110,7 @@ message SSHReceivePackResponse {
ExitStatus exit_status = 3;
}
+// This comment is left unintentionally blank.
message SSHUploadArchiveRequest {
// 'repository' must be present in the first message.
Repository repository = 1 [(target_repository)=true];
@@ -111,6 +118,7 @@ message SSHUploadArchiveRequest {
bytes stdin = 2;
}
+// This comment is left unintentionally blank.
message SSHUploadArchiveResponse {
// A chunk of raw data from 'git upload-archive' standard output
bytes stdout = 1;