Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2019-03-15 16:09:03 +0300
committerNick Thomas <nick@gitlab.com>2019-03-15 16:09:03 +0300
commit76f94da99d4f7973edf22c1fa1962ffd7b95f8bf (patch)
tree9ee68035bbbf9b6e397554a230bdf01684870d2a /lib/gitlab/gitaly_client
parent7adf10e1869f13a1a66c7db5d403f3cfdccc8560 (diff)
parent697cb6f627ed4900c59d008d34f6399c18f33bfc (diff)
Merge branch '56015-remove-remote-timeout' into 'master'
Remove timeout for GitalyClient remove_remote Closes #56015 See merge request gitlab-org/gitlab-ce!26213
Diffstat (limited to 'lib/gitlab/gitaly_client')
-rw-r--r--lib/gitlab/gitaly_client/remote_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/gitaly_client/remote_service.rb b/lib/gitlab/gitaly_client/remote_service.rb
index 81fac37ee68..f3589fea39f 100644
--- a/lib/gitlab/gitaly_client/remote_service.rb
+++ b/lib/gitlab/gitaly_client/remote_service.rb
@@ -38,7 +38,7 @@ module Gitlab
def remove_remote(name)
request = Gitaly::RemoveRemoteRequest.new(repository: @gitaly_repo, name: name)
- response = GitalyClient.call(@storage, :remote_service, :remove_remote, request, timeout: GitalyClient.fast_timeout)
+ response = GitalyClient.call(@storage, :remote_service, :remove_remote, request)
response.result
end