Multicast with pipeline may cause wrong aggregated exchange
-----------------------------------------------------------

                 Key: CAMEL-3276
                 URL: https://issues.apache.org/activemq/browse/CAMEL-3276
             Project: Apache Camel
          Issue Type: Bug
          Components: camel-core
    Affects Versions: 2.4.0
            Reporter: Claus Ibsen
            Assignee: Claus Ibsen
            Priority: Minor
             Fix For: 2.6.0


This is a problem when using 2 set of nested pipeline and doing a transform as 
the first processor in that pipeline
{code}
                from("direct:start").multicast(new SumAggregateBean())
                    .pipeline().transform(bean(IncreaseOne.class)).bean(new 
IncreaseTwo()).to("log:foo").end()
                    .pipeline().transform(bean(IncreaseOne.class)).bean(new 
IncreaseTwo()).to("log:bar").end()
                .end()
                .to("mock:result");
{code}



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to