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>2021-08-20 10:24:05 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-08-20 13:18:32 +0300
commitd570abf84c882ab4beb51b916aec41455956c1bd (patch)
treedecc04d3297ef73133238826fd1b31ffee7bfbdd /proto/repository-service.proto
parenta63f2989dd1438f4827384cd8401f976c62343c3 (diff)
repository: Remove support for on-disk remotes in FetchRemote
On-disk remotes have been deprecated, and no upstream callers remain which use them anymore. Remove support for them in FetchRemote by dropping the "remote" parameter. Changelog: removed
Diffstat (limited to 'proto/repository-service.proto')
-rw-r--r--proto/repository-service.proto7
1 files changed, 3 insertions, 4 deletions
diff --git a/proto/repository-service.proto b/proto/repository-service.proto
index f4ca95264..513e5e2bd 100644
--- a/proto/repository-service.proto
+++ b/proto/repository-service.proto
@@ -334,10 +334,6 @@ message ApplyGitattributesResponse {}
message FetchRemoteRequest {
Repository repository = 1 [(target_repository)=true];
- // remote is the name of the remote that shall be fetched. This remote must
- // exist in the repository's configuration already. This parameter is
- // deprecated in favor of remote_params.
- string remote = 2;
// force determines if references should be force-updated in case they have
// diverged.
bool force = 3;
@@ -358,6 +354,9 @@ message FetchRemoteRequest {
// tags were modified, returning the result in the tags_changed field of
// FetchRemoteResponse
bool check_tags_changed = 11;
+
+ reserved 2;
+ reserved "remote";
}
message FetchRemoteResponse {