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:
authorNick Thomas <nick@gitlab.com>2020-11-03 17:37:58 +0300
committerNick Thomas <nick@gitlab.com>2020-11-03 17:42:45 +0300
commit056e69fc02243d6166d07fe4f9e8b1748647ff5f (patch)
tree79e0a2e8d7623d20e08a365473ae37b7982f5154 /proto/repository-service.proto
parent1c4fdefdaf88730c025b5c7ba7ddc42c268043d4 (diff)
Remove RepositoryService.FetchHTTPRemote from the proto
Diffstat (limited to 'proto/repository-service.proto')
-rw-r--r--proto/repository-service.proto13
1 files changed, 0 insertions, 13 deletions
diff --git a/proto/repository-service.proto b/proto/repository-service.proto
index e7d921b85..24c3ea7fa 100644
--- a/proto/repository-service.proto
+++ b/proto/repository-service.proto
@@ -184,11 +184,6 @@ service RepositoryService {
op: ACCESSOR
};
}
- rpc FetchHTTPRemote(FetchHTTPRemoteRequest) returns (FetchHTTPRemoteResponse) {
- option (op_type) = {
- op: MUTATOR
- };
- }
rpc GetObjectDirectorySize(GetObjectDirectorySizeRequest) returns (GetObjectDirectorySizeResponse) {
option (op_type) = {
op: ACCESSOR
@@ -598,14 +593,6 @@ message Remote {
repeated string mirror_refmaps = 4;
}
-message FetchHTTPRemoteRequest {
- Repository repository = 1 [(target_repository)=true];
- Remote remote = 2;
- int32 timeout = 3;
-}
-
-message FetchHTTPRemoteResponse {}
-
message GetObjectDirectorySizeRequest {
Repository repository = 1 [(target_repository)=true];
}