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
path: root/ruby
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-09-21 09:53:21 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-09-21 10:14:52 +0300
commit9c57226c3c18791dc55622b481cffcdaa6552b3d (patch)
treee250aa1afe2729b1985fbaeb5fd87076efff2bae /ruby
parent5b7382e0251176923f258aa8f8c23a8084f6cae9 (diff)
repository: Remove `DeleteConfig()` RPC
Remove the deprecated `DeleteConfig()` RPC call. Modifying the on-disk remote is not supported anymore by Gitaly. Changelog: deprecated
Diffstat (limited to 'ruby')
-rw-r--r--ruby/proto/gitaly/repository-service_pb.rb8
-rw-r--r--ruby/proto/gitaly/repository-service_services_pb.rb4
2 files changed, 0 insertions, 12 deletions
diff --git a/ruby/proto/gitaly/repository-service_pb.rb b/ruby/proto/gitaly/repository-service_pb.rb
index f702f902b..8753349d2 100644
--- a/ruby/proto/gitaly/repository-service_pb.rb
+++ b/ruby/proto/gitaly/repository-service_pb.rb
@@ -189,12 +189,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
end
add_message "gitaly.SetConfigResponse" do
end
- add_message "gitaly.DeleteConfigRequest" do
- optional :repository, :message, 1, "gitaly.Repository"
- repeated :keys, :string, 2
- end
- add_message "gitaly.DeleteConfigResponse" do
- end
add_message "gitaly.RestoreCustomHooksRequest" do
optional :repository, :message, 1, "gitaly.Repository"
optional :data, :bytes, 2
@@ -401,8 +395,6 @@ module Gitaly
SetConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest").msgclass
SetConfigRequest::Entry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest.Entry").msgclass
SetConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigResponse").msgclass
- DeleteConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteConfigRequest").msgclass
- DeleteConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteConfigResponse").msgclass
RestoreCustomHooksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksRequest").msgclass
RestoreCustomHooksResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksResponse").msgclass
BackupCustomHooksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.BackupCustomHooksRequest").msgclass
diff --git a/ruby/proto/gitaly/repository-service_services_pb.rb b/ruby/proto/gitaly/repository-service_services_pb.rb
index b913f67d3..409ee8a4e 100644
--- a/ruby/proto/gitaly/repository-service_services_pb.rb
+++ b/ruby/proto/gitaly/repository-service_services_pb.rb
@@ -52,10 +52,6 @@ module Gitaly
# still supported is writing "gitlab.fullpath" via the new `SetFullPath()`
# RPC.
rpc :SetConfig, Gitaly::SetConfigRequest, Gitaly::SetConfigResponse
- # DeleteConfig deletes a set of config entries from the target repository's
- # gitconfig. This RPC is deprecated with no replacement: modifying the
- # on-disk gitconfig is not supported anymore.
- rpc :DeleteConfig, Gitaly::DeleteConfigRequest, Gitaly::DeleteConfigResponse
rpc :FindLicense, Gitaly::FindLicenseRequest, Gitaly::FindLicenseResponse
rpc :GetInfoAttributes, Gitaly::GetInfoAttributesRequest, stream(Gitaly::GetInfoAttributesResponse)
rpc :CalculateChecksum, Gitaly::CalculateChecksumRequest, Gitaly::CalculateChecksumResponse