Commit 7ce20dfb authored by Thong Kuah's avatar Thong Kuah

Do not check licenses table as we don't refer to License anymore

parent 2d72120f
# frozen_string_literal: true # frozen_string_literal: true
# We need to run this initializer after migrations are done so it doesn't fail on CI if Gitlab::Database::LoadBalancing.enable?
Gitlab::Database.disable_prepared_statements
if Gitlab::Database.cached_table_exists?('licenses') Gitlab::Application.configure do |config|
if Gitlab::Database::LoadBalancing.enable? config.middleware.use(Gitlab::Database::LoadBalancing::RackMiddleware)
Gitlab::Database.disable_prepared_statements end
Gitlab::Application.configure do |config|
config.middleware.use(Gitlab::Database::LoadBalancing::RackMiddleware)
end
Gitlab::Database::LoadBalancing.configure_proxy
# This needs to be executed after fork of clustered processes Gitlab::Database::LoadBalancing.configure_proxy
Gitlab::Cluster::LifecycleEvents.on_worker_start do
# Service discovery must be started after configuring the proxy, as service
# discovery depends on this.
Gitlab::Database::LoadBalancing.start_service_discovery
end
# This needs to be executed after fork of clustered processes
Gitlab::Cluster::LifecycleEvents.on_worker_start do
# Service discovery must be started after configuring the proxy, as service
# discovery depends on this.
Gitlab::Database::LoadBalancing.start_service_discovery
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment