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

26 lines
879 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
ActiveRecord::Base.establish_connection
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
2020-04-08 14:13:33 +05:30
raise 'ActiveRecord connection not established. Unable to start.' unless Gitlab::Database.exists?
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