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

23 lines
932 B
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
2022-08-27 11:52:29 +05:30
Rails.application.reloader.to_run(:before) do
# Make sure connects_to for Ci::ApplicationRecord gets called outside of config/routes.rb first
# See InitializerConnections.with_disabled_database_connections
Ci::ApplicationRecord
end
2020-03-13 15:44:24 +05:30
Gitlab.ee do
2022-08-13 15:12:31 +05:30
if Gitlab::Geo.geo_database_configured?
# Make sure connects_to for geo gets called outside of config/routes.rb first
# See InitializerConnections.with_disabled_database_connections
Geo::TrackingBase
end
2020-10-24 23:57:45 +05:30
if Gitlab::Runtime.sidekiq? && Gitlab::Geo.geo_database_configured?
2022-01-26 12:08:38 +05:30
# The Geo::TrackingBase model does not yet use connects_to. So,
# this will not properly support geo: from config/databse.yml
# file yet. This is ACK of the current state and will be fixed.
2022-03-02 08:16:31 +05:30
Geo::TrackingBase.establish_connection(Gitlab::Database.geo_db_config_with_default_pool_size) # rubocop: disable Database/EstablishConnection
2020-03-13 15:44:24 +05:30
end
2019-12-26 22:10:19 +05:30
end