Skip to content
Snippets Groups Projects
Commit 55ab92c0 authored by Rémy Coutable's avatar Rémy Coutable
Browse files

Use ActiveRecord::Base.connection.active? and rescue any exception in connect_to_db?

This ensures that rake tasks that don't need a DB connection can be run
without one.
parent 869b4d7c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -41,8 +41,11 @@ module Gitlab
private
 
def connect_to_db?
# When the DBMS is not available, an exception (e.g. PG::ConnectionBad) is raised
active_db_connection = ActiveRecord::Base.connection.active? rescue false
ENV['USE_DB'] != 'false' &&
ActiveRecord::Base.connection_pool.active_connection? &&
active_db_connection &&
ActiveRecord::Base.connection.table_exists?('application_settings')
 
rescue ActiveRecord::NoDatabaseError
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment