Parent

Methods

Files

Class/Module Index [+]

Quicksearch

ActiveRecord::ConnectionAdapters::ConnectionManagement

Public Class Methods

new(app) click to toggle source
# File lib/active_record/connection_adapters/abstract/connection_pool.rb, line 466
def initialize(app)
  @app = app
end

Public Instance Methods

call(env) click to toggle source
# File lib/active_record/connection_adapters/abstract/connection_pool.rb, line 470
def call(env)
  testing = env.key?('rack.test')

  status, headers, body = @app.call(env)

  [status, headers, Proxy.new(body, testing)]
rescue
  ActiveRecord::Base.clear_active_connections! unless testing
  raise
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.