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:
authorsword <ruili@jihulab.com>2023-05-29 04:57:59 +0300
committerSword <sword@cybozu.co.jp>2023-06-09 07:15:46 +0300
commit0cadacd729553ef5760a8a65a931aae1a159ed13 (patch)
tree5f7e7f5cd0b0580ac8eac893c3a4a5b9523d1f50 /proto/smarthttp.proto
parent0cc104642f91db8053ae5c1c75d44f2c11694482 (diff)
feat: add stats field in SSHUploadPackWithSidechannelResponse
Diffstat (limited to 'proto/smarthttp.proto')
-rw-r--r--proto/smarthttp.proto3
1 files changed, 2 insertions, 1 deletions
diff --git a/proto/smarthttp.proto b/proto/smarthttp.proto
index 3a3193d9e..81098f2a0 100644
--- a/proto/smarthttp.proto
+++ b/proto/smarthttp.proto
@@ -3,8 +3,8 @@ syntax = "proto3";
package gitaly;
import "lint.proto";
-import "shared.proto";
import "packfile.proto";
+import "shared.proto";
option go_package = "gitlab.com/gitlab-org/gitaly/v16/proto/go/gitalypb";
@@ -86,6 +86,7 @@ message PostUploadPackWithSidechannelRequest {
// This is an empty response since the raw data is transferred to the client via the sidechannel
// exclusively.
message PostUploadPackWithSidechannelResponse {
+ // Packfile negotiation.
Stats stats = 1;
}