-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Not A Bug
-
Affects Version/s: 2.16.2
-
Component/s: camel-core
-
Labels:None
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.