multicast parallelProcessing is always true
-------------------------------------------
Key: CAMEL-415
URL: https://issues.apache.org/activemq/browse/CAMEL-415
Project: Apache Camel
Issue Type: Bug
Components: camel-core
Affects Versions: 1.3.0
Reporter: Claus Ibsen
Assignee: Claus Ibsen
Priority: Minor
Fix For: 1.4.0
{code}
public MulticastType multicast(AggregationStrategy aggregationStrategy,
boolean parallelProcessing) {
MulticastType answer = new MulticastType();
addOutput(answer);
answer.setAggregationStrategy(aggregationStrategy);
answer.setParallelProcessing(true);
return answer;
}
{code}
The parameter parallelProcessing is never used. setParallelProcessing is always
true.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.