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
|
|
|
|
end
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
Gitlab.ee do
|
|
|
|
if Gitlab::Runtime.sidekiq? && Gitlab::Geo.geo_database_configured?
|
2021-11-11 11:23:49 +05:30
|
|
|
Rails.configuration.geo_database['pool'] = Gitlab::Database.default_pool_size
|
2020-10-24 23:57:45 +05:30
|
|
|
Geo::TrackingBase.establish_connection(Rails.configuration.geo_database)
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|