Hum... actually this seems to be a normal behaviour :
"Point of entry for redelivery attempts
All redelivery attempts start at the point of the failure. So the route:
.onException(ConnectException.class)
.from("direct:start")
.process("processor1")
.process("processor2") // <--- throws a ConnectException
.to("mock:theEnd")
*Will retry from processor2 - not the complete route.* "
(http://camel.apache.org/exception-clause.html)
Thank you for your help.
--
View this message in context:
http://camel.465427.n5.nabble.com/Redelivery-with-multiple-transacted-routes-tp5158209p5158304.html
Sent from the Camel - Users mailing list archive at Nabble.com.