Check for database connection before loading current application settings
This commit is contained in:
parent
ff7f4a134e
commit
02d8575a61
1 changed files with 4 additions and 19 deletions
|
@ -1,14 +1,10 @@
|
|||
module Gitlab
|
||||
module CurrentSettings
|
||||
def current_application_settings
|
||||
begin
|
||||
if ActiveRecord::Base.connection.table_exists?('application_settings')
|
||||
ApplicationSetting.current ||
|
||||
ApplicationSetting.create_from_defaults
|
||||
else
|
||||
fake_application_settings
|
||||
end
|
||||
rescue ActiveRecord::NoDatabaseError, database_adapter.constantize::Error
|
||||
if ActiveRecord::Base.connected? && ActiveRecord::Base.connection.table_exists?('application_settings')
|
||||
ApplicationSetting.current ||
|
||||
ApplicationSetting.create_from_defaults
|
||||
else
|
||||
fake_application_settings
|
||||
end
|
||||
end
|
||||
|
@ -22,16 +18,5 @@ module Gitlab
|
|||
sign_in_text: Settings.extra['sign_in_text'],
|
||||
)
|
||||
end
|
||||
|
||||
# We need to check which database is setup
|
||||
# but we cannot assume that the database exists already.
|
||||
# Not checking this will break "rake gitlab:setup".
|
||||
def database_adapter
|
||||
if Rails.configuration.database_configuration[Rails.env]['adapter'] == 'mysql2'
|
||||
"Mysql2"
|
||||
else
|
||||
"PG"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue