Since #2703 (3.3.0) an exception raised inside a rescue_from block is caught and redispatched instead of escaping the middleware stack. That fixed #2482, and it also removed the only way an app could let a specific exception class reach Rack middleware mounted above Grape. There's no opt-out today.
The case I hit: Rails' ActiveRecord::Middleware::DatabaseSelector routes a request to a read replica, and a custom config.active_record.database_resolver can catch ActiveRecord::ReadOnlyError and retry the block against the primary. The app re-raised that error from rescue_from(:all) so the resolver upstream could do its job. On 3.3+ it no longer gets there, so the request 500s where it used to recover, and nothing notices, since the redispatch renders an ordinary 500.
env['grape.exception'] (#2855) is enough to report the exception but not to act on it, because the response is already built by then. Raising a non-StandardError does escape, but it bypasses every intervening rescue => e. Dropping rescue_from :all gives up the catch-all for everything else, and #2737 makes excluding a single class from it an ArgumentError.
#2840 made the same call for the rendering case and added Grape.config.raise_rendering_errors to opt back out. I'd like the equivalent for the handler case:
rescue_from ActiveRecord::ReadOnlyError, propagate: true
Verified the behavior above against 4.0.1. Happy to open a PR if the direction seems right.
Since #2703 (3.3.0) an exception raised inside a
rescue_fromblock is caught and redispatched instead of escaping the middleware stack. That fixed #2482, and it also removed the only way an app could let a specific exception class reach Rack middleware mounted above Grape. There's no opt-out today.The case I hit: Rails'
ActiveRecord::Middleware::DatabaseSelectorroutes a request to a read replica, and a customconfig.active_record.database_resolvercan catchActiveRecord::ReadOnlyErrorand retry the block against the primary. The app re-raised that error fromrescue_from(:all)so the resolver upstream could do its job. On 3.3+ it no longer gets there, so the request 500s where it used to recover, and nothing notices, since the redispatch renders an ordinary 500.env['grape.exception'](#2855) is enough to report the exception but not to act on it, because the response is already built by then. Raising a non-StandardErrordoes escape, but it bypasses every interveningrescue => e. Droppingrescue_from :allgives up the catch-all for everything else, and #2737 makes excluding a single class from it anArgumentError.#2840 made the same call for the rendering case and added
Grape.config.raise_rendering_errorsto opt back out. I'd like the equivalent for the handler case:Verified the behavior above against 4.0.1. Happy to open a PR if the direction seems right.