Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Not A Bug
-
2.16.2
-
None
Description
this code is ok and do the agregate :
from("direct:rlAggregate")
.process(new Processor()
})
.recipientList(header("destinations"), ",").parallelProcessing().aggregationStrategy(agg);
an this one not :
from("direct:rlAggregate")
.process(new Processor()
})
.recipientList(header("destinations"), ",").parallelProcessing().aggregationStrategy(agg);
it's throwing :
org.apache.camel.CamelExecutionException: Exception occurred during execution on the exchange
they should have the same results. And only the option stopOnException should allow to stop when an Exception rise.