Skip to content
  • Nikita Vasilevsky's avatar
    a8d1d927
    Do not report rendered errors except 500 · a8d1d927
    Nikita Vasilevsky authored
    In `4067c956` `ActionDispatch::Executor`
    started to report all errors, even the ones that were "handled" by the application.
    This leads to errors like `ActionController::RoutingError` polluting error trackers
    while not being actionable since they do not represent an exceptional situation.
    
    This commit changes the behavior to only report errors that are not
    considered "handled" based on the `ActionDispatch::ExceptionWrapper.rescue_responses` list.
    a8d1d927
    Do not report rendered errors except 500
    Nikita Vasilevsky authored
    In `4067c956` `ActionDispatch::Executor`
    started to report all errors, even the ones that were "handled" by the application.
    This leads to errors like `ActionController::RoutingError` polluting error trackers
    while not being actionable since they do not represent an exceptional situation.
    
    This commit changes the behavior to only report errors that are not
    considered "handled" based on the `ActionDispatch::ExceptionWrapper.rescue_responses` list.
Loading