You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "courtin (JIRA)" <ji...@apache.org> on 2016/03/22 14:13:25 UTC

[jira] [Created] (CAMEL-9741) recipientList stop if the second endpoint throw exception

courtin created CAMEL-9741:
------------------------------

             Summary: recipientList stop if the second endpoint throw exception
                 Key: CAMEL-9741
                 URL: https://issues.apache.org/jira/browse/CAMEL-9741
             Project: Camel
          Issue Type: Bug
          Components: camel-core
    Affects Versions: 2.16.2
         Environment: java 7/eclipse
            Reporter: courtin
            Priority: Critical


this code is ok and do the agregate :

 from("direct:rlAggregate")
                .process(new Processor() { String   destinations = "bean:throwingExceptionConsumerB, bean:consumerC";} })
                .recipientList(header("destinations"), ",").parallelProcessing().aggregationStrategy(agg);

an this one not :

 from("direct:rlAggregate")
                .process(new Processor() { String   destinations = "bean:consumerC, bean:throwingExceptionConsumerB";} })
                .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.




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)