diff options
author | Douwe Maan <douwe@gitlab.com> | 2018-12-13 11:36:09 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2018-12-13 11:36:09 +0000 |
commit | 47dc17bce2e59b403dffa9eacc8b146618dba2c2 (patch) | |
tree | 544fda407b7df029b0dd122f949fd0dfe3ad9694 /lib/gitlab_access.rb | |
parent | df89099ed954a6673bb8388ef74480940d40a759 (diff) | |
download | gitlab-shell-47dc17bce2e59b403dffa9eacc8b146618dba2c2.tar.gz |
Revert "Merge branch 'sh-bump-ruby-version' into 'master'"
This reverts merge request !257
Diffstat (limited to 'lib/gitlab_access.rb')
-rw-r--r-- | lib/gitlab_access.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab_access.rb b/lib/gitlab_access.rb index ce299fe..e1a5e35 100644 --- a/lib/gitlab_access.rb +++ b/lib/gitlab_access.rb @@ -31,10 +31,10 @@ class GitlabAccess true rescue GitlabNet::ApiUnreachableError - warn "GitLab: Failed to authorize your Git request: internal API unreachable" + $stderr.puts "GitLab: Failed to authorize your Git request: internal API unreachable" false rescue AccessDeniedError => ex - warn "GitLab: #{ex.message}" + $stderr.puts "GitLab: #{ex.message}" false end |