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:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2019-09-19 13:35:48 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2019-09-19 13:37:49 +0300
commit24b82884b0180059f37e15b7a77824e80195237a (patch)
treec3816b8a91168fd5b3fc257cf98e9b3d02e0717c /proto/cleanup.proto
parentbd7a608b36e85c08fda8ec4f6704660b071ccdf5 (diff)
CloseSession: Remove unused proto
Initially this RPC was supposed to hand off control to a cat-file being closed to a caller. This decision got reverted and now this RPC can be removed. Closes https://gitlab.com/gitlab-org/gitaly/issues/1810
Diffstat (limited to 'proto/cleanup.proto')
-rw-r--r--proto/cleanup.proto13
1 files changed, 0 insertions, 13 deletions
diff --git a/proto/cleanup.proto b/proto/cleanup.proto
index 276a17e02..c4cc1480d 100644
--- a/proto/cleanup.proto
+++ b/proto/cleanup.proto
@@ -21,13 +21,6 @@ service CleanupService {
target_repository_field: "1"
};
}
-
- rpc CloseSession(CloseSessionRequest) returns (CloseSessionResponse) {
- option (op_type) = {
- op: MUTATOR
- scope_level: SERVER,
- };
- }
}
message ApplyBfgObjectMapRequest {
@@ -61,9 +54,3 @@ message ApplyBfgObjectMapStreamResponse {
repeated Entry entries = 1;
}
-
-message CloseSessionRequest{
- string session_id = 1;
-}
-
-message CloseSessionResponse{}