Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

railtie: insert our Rails middleware before Rails' one #418

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion features/step_definitions/rails_application_steps.rb
Expand Up @@ -263,5 +263,5 @@ def #{current_user}
airbrake_index = middleware.rindex("use Airbrake::Rails::Middleware")
middleware_index = middleware.rindex("use ActionDispatch::DebugExceptions") ||
middleware.rindex("use ActionDispatch::ShowExceptions")
(airbrake_index > middleware_index).should be_true
(airbrake_index < middleware_index).should be_true
end
2 changes: 1 addition & 1 deletion lib/airbrake/railtie.rb
Expand Up @@ -20,7 +20,7 @@ class Railtie < ::Rails::Railtie
"ActionDispatch::ShowExceptions"
end

app.config.middleware.insert_after middleware,
app.config.middleware.insert_before middleware,
"Airbrake::Rails::Middleware"

app.config.middleware.insert 0, "Airbrake::UserInformer"
Expand Down