Class: RailsSpotlight::Middlewares::Handlers::SqlActionHandler

Inherits:
BaseActionHandler show all
Defined in:
lib/rails_spotlight/middlewares/handlers/sql_action_handler.rb

Constant Summary

Constants inherited from BaseActionHandler

BaseActionHandler::Forbidden, BaseActionHandler::IncorrectResponseContentType, BaseActionHandler::NotFound, BaseActionHandler::UnprocessableEntity

Instance Attribute Summary

Attributes inherited from BaseActionHandler

#content_type, #request, #request_id

Instance Method Summary collapse

Methods inherited from BaseActionHandler

#call, #initialize

Constructor Details

This class inherits a constructor from RailsSpotlight::Middlewares::Handlers::BaseActionHandler

Instance Method Details

#executeObject



7
8
9
10
11
12
13
# File 'lib/rails_spotlight/middlewares/handlers/sql_action_handler.rb', line 7

def execute
  return transaction unless ActiveSupport.const_defined?('ExecutionContext')

  ActiveSupport::ExecutionContext.set(rails_spotlight: request_id) do
    transaction
  end
end