2018-10-20 14:00:19 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Don't handle sidekiq configuration as it
|
|
|
|
# has its own special active record configuration here
|
2019-12-22 04:07:51 -05:00
|
|
|
if defined?(ActiveRecord::Base) && !Gitlab::Runtime.sidekiq?
|
2018-10-20 14:00:19 -04:00
|
|
|
Gitlab::Cluster::LifecycleEvents.on_worker_start do
|
|
|
|
ActiveSupport.on_load(:active_record) do
|
|
|
|
ActiveRecord::Base.establish_connection
|
|
|
|
|
2020-09-09 08:08:22 -04:00
|
|
|
Gitlab::AppLogger.debug("ActiveRecord connection established")
|
2018-10-20 14:00:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if defined?(ActiveRecord::Base)
|
|
|
|
Gitlab::Cluster::LifecycleEvents.on_before_fork do
|
2021-11-15 10:10:57 -05:00
|
|
|
raise 'ActiveRecord connection not established. Unable to start.' unless ApplicationRecord.database.exists?
|
2020-02-20 13:08:51 -05:00
|
|
|
|
2018-10-20 14:00:19 -04:00
|
|
|
# the following is highly recommended for Rails + "preload_app true"
|
|
|
|
# as there's no need for the master process to hold a connection
|
|
|
|
ActiveRecord::Base.connection.disconnect!
|
|
|
|
|
2020-09-09 08:08:22 -04:00
|
|
|
Gitlab::AppLogger.debug("ActiveRecord connection disconnected")
|
2018-10-20 14:00:19 -04:00
|
|
|
end
|
|
|
|
end
|