Welcome to mirror list, hosted at ThFree Co, Russian Federation.

active_record_ping.rb « initializers « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7088c690a51147b388fbc815ff1e126d279b4949 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

# # frozen_string_literal: true

if Gitlab::Utils.to_boolean(ENV['ENABLE_ACTIVERECORD_EMPTY_PING'], default: true)
  ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.prepend(Gitlab::Database::PostgresqlAdapter::EmptyQueryPing)
end