debian-mirror-gitlab/config/initializers/active_record_lifecycle.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
937 B
Ruby
Raw Normal View History

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-03-02 08:16:31 +05:30
ActiveRecord::Base.establish_connection # rubocop: disable Database/EstablishConnection
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
ActiveRecord::Base.connection.disconnect!
2020-11-24 15:15:51 +05:30
Gitlab::AppLogger.debug("ActiveRecord connection disconnected")
2018-12-13 13:39:08 +05:30
end
end