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:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2017-09-12 13:26:59 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2017-10-05 15:11:32 +0300
commit4656283c5cd10116d79812db24c37ff79b0e0273 (patch)
treebc66bc0e89178eb36c2d6bbcf80c2f0c4fb6170e /lib/gitlab/git/repository.rb
parent905d3ed4292e6b274ac51b26b3b3577087c5f737 (diff)
Gitaly namespace service enabled for GitLab
Diffstat (limited to 'lib/gitlab/git/repository.rb')
-rw-r--r--lib/gitlab/git/repository.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/gitlab/git/repository.rb b/lib/gitlab/git/repository.rb
index e42bbb659b4..0f059bef808 100644
--- a/lib/gitlab/git/repository.rb
+++ b/lib/gitlab/git/repository.rb
@@ -1112,6 +1112,8 @@ module Gitlab
raise NoRepository.new(e)
rescue GRPC::BadStatus => e
raise CommandError.new(e)
+ rescue GRPC::InvalidArgument => e
+ raise ArgumentError.new(e)
end
private