Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Won't Fix
-
2.14.1
-
None
-
Unknown
Description
seeing an incorrect redelivery of a message when using the UseLatestAggregationStrategy...
this very basic route (see attached)...
from("direct:start")
.aggregate(constant(true), new UseLatestAggregationStrategy())
.completionSize(2)
.aggregationRepository(repo)
.to("mock:mock");
resulting in a duplicate message being processed through the aggregator route...
if the default in-memory repo is used, the test behaves as expected...no unnecessary redelivery, etc.
Attachments
Attachments
Issue Links
- relates to
-
CAMEL-8947 LevelDBAggregatorRepository redelivers incorrectly
- Resolved