Claus Ibsen created CAMEL-7275:
----------------------------------
Summary: Using doTry .. doCatch with recipient list should not
trigger error handler during recipient list work
Key: CAMEL-7275
URL: https://issues.apache.org/jira/browse/CAMEL-7275
Project: Camel
Issue Type: Bug
Components: camel-core, eip
Affects Versions: 2.12.3
Reporter: Claus Ibsen
Assignee: Claus Ibsen
Fix For: 2.12.4, 2.13.0
When you have a route like this
{code}
from("direct:start")
.doTry()
.recipientList(constant("direct:foo")).end()
.doCatch(Exception.class)
.to("mock:catch")
.transform().constant("doCatch")
.end()
.to("mock:result");
{code}
Then if an exception was thrown it should be catch by doCatch
A similar route with to instead works as expected.
--
This message was sent by Atlassian JIRA
(v6.2#6252)