Methods
Classes and Modules
Class Public methods
Instance Public methods
# File activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb, line 471 471: def call(env) 472: testing = env.key?('rack.test') 473: 474: status, headers, body = @app.call(env) 475: 476: [status, headers, Proxy.new(body, testing)] 477: rescue 478: ActiveRecord::Base.clear_active_connections! unless testing 479: raise 480: end