Hello. I have multiple Camel contexts that use a same common route to get data from a database.
This route relies on a "direct-vm:xxx" consumer, that is called by the other context. All works as expected except when an exception is thrown in the called context : the exception breaks the exchange, and the caller route ends, but the exception seems not to be handled by the "onException" handlers of the calling context as any other kind of exception. These exception handlers are defined in each context as global. I've tried to add "bridgeErrorHandler=true" on the direct-vm consumer, but the exception is still lost, and doesn't reach my exception handlers... What is wrong here ? Thanks for your help. Regards.