diff options
author | Stan Hu <stanhu@gmail.com> | 2018-07-26 23:05:22 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2018-07-26 23:05:22 -0700 |
commit | 3f715bb438f81d8847e48d4fa76d1827b2df88eb (patch) | |
tree | 9cacc78580d951fd7378220c06e3766ae9b37e55 /app | |
parent | 079b490ad2106e83bf315c7f3e9ac5e1d60c0d0c (diff) | |
download | gitlab-ce-3f715bb438f81d8847e48d4fa76d1827b2df88eb.tar.gz |
Consolidate server errors and add specs
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/import/bitbucket_server_controller.rb | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/app/controllers/import/bitbucket_server_controller.rb b/app/controllers/import/bitbucket_server_controller.rb index 0b57f4eef1f..95e49adde52 100644 --- a/app/controllers/import/bitbucket_server_controller.rb +++ b/app/controllers/import/bitbucket_server_controller.rb @@ -15,16 +15,6 @@ class Import::BitbucketServerController < Import::BaseController # (https://community.atlassian.com/t5/Answers-Developer-Questions/stash-repository-names/qaq-p/499054) VALID_BITBUCKET_CHARS = /\A[a-zA-z0-9\-_\.\s]+\z/ - SERVER_ERRORS = [SocketError, - OpenSSL::SSL::SSLError, - Errno::ECONNRESET, - Errno::ECONNREFUSED, - Errno::EHOSTUNREACH, - Net::OpenTimeout, - Net::ReadTimeout, - Gitlab::HTTP::BlockedUrlError, - BitbucketServer::Connection::ConnectionError].freeze - def new end @@ -52,7 +42,7 @@ class Import::BitbucketServerController < Import::BaseController else render json: { errors: 'This namespace has already been taken! Please choose another one.' }, status: :unprocessable_entity end - rescue *SERVER_ERRORS => e + rescue BitbucketServer::Client::ServerError => e render json: { errors: "Unable to connect to server: #{e}" }, status: :unprocessable_entity end @@ -73,7 +63,7 @@ class Import::BitbucketServerController < Import::BaseController already_added_projects_names = @already_added_projects.pluck(:import_source) @repos.to_a.reject! { |repo| already_added_projects_names.include?(repo.browse_url) } - rescue *SERVER_ERRORS => e + rescue BitbucketServer::Connection::ConnectionError, BitbucketServer::Client::ServerError => e flash[:alert] = "Unable to connect to server: #{e}" clear_session_data redirect_to new_import_bitbucket_server_path |