From 20200e71004f3b4aa23229fa68142c147a2d5adb Mon Sep 17 00:00:00 2001 From: Andrew White Date: Wed, 22 Jul 2015 16:47:07 +0100 Subject: [PATCH] Fix incorrect class name in igore_exceptions config The correct name for the class is ActionController::BadRequest and not ActionDispatch::BadRequest. --- config/appsignal.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/appsignal.yml b/config/appsignal.yml index 4befed4ae..02f23e62d 100644 --- a/config/appsignal.yml +++ b/config/appsignal.yml @@ -16,7 +16,7 @@ default: &defaults # Exceptions that should not be recorded by AppSignal ignore_exceptions: - ActionDispatch::ParamsParser::ParseError - - ActionDispatch::BadRequest + - ActionController::BadRequest - ActionController::InvalidAuthenticityToken - ActionController::RoutingError - ActiveRecord::RecordNotFound