2019-12-26 22:10:19 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
Gitlab.ee do
|
|
|
|
# We need to initialize the Geo database before
|
|
|
|
# setting the Geo DB connection pool size.
|
|
|
|
if File.exist?(Rails.root.join('config/database_geo.yml'))
|
|
|
|
Rails.application.configure do
|
|
|
|
config.geo_database = config_for(:database_geo)
|
|
|
|
end
|
|
|
|
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
|