gitlab-org--gitlab-foss/spec/support/helpers/database_connection_helpers.rb

12 lines
231 B
Ruby

# frozen_string_literal: true
module DatabaseConnectionHelpers
def run_with_new_database_connection
pool = ActiveRecord::Base.connection_pool
conn = pool.checkout
yield conn
ensure
pool.checkin(conn)
end
end