2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Don't handle sidekiq configuration as it
|
|
|
|
# has its own special active record configuration here
|
2020-03-13 15:44:24 +05:30
|
|
|
if defined?(ActiveRecord::Base) && !Gitlab::Runtime.sidekiq?
|
2018-12-13 13:39:08 +05:30
|
|
|
Gitlab::Cluster::LifecycleEvents.on_worker_start do
|
|
|
|
ActiveSupport.on_load(:active_record) do
|
2022-07-16 23:28:13 +05:30
|
|
|
# rubocop:disable Database/MultipleDatabases
|
|
|
|
ActiveRecord::Base.establish_connection # rubocop:disable Database/EstablishConnection
|
|
|
|
# rubocop:enable Database/MultipleDatabases
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
Gitlab::AppLogger.debug("ActiveRecord connection established")
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if defined?(ActiveRecord::Base)
|
|
|
|
Gitlab::Cluster::LifecycleEvents.on_before_fork do
|
2021-12-11 22:18:48 +05:30
|
|
|
raise 'ActiveRecord connection not established. Unable to start.' unless ApplicationRecord.database.exists?
|
2020-04-08 14:13:33 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
# the following is highly recommended for Rails + "preload_app true"
|
|
|
|
# as there's no need for the master process to hold a connection
|
2022-07-16 23:28:13 +05:30
|
|
|
ActiveRecord::Base.clear_all_connections! # rubocop:disable Database/MultipleDatabases
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
Gitlab::AppLogger.debug("ActiveRecord connections disconnected")
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
end
|