Repository: camel Updated Branches: refs/heads/master 111c01ad7 -> 8e13c5e18
Fix Camel-zipfile AggregationStrategyWithPreservationTest currently failing locally and on the CI-Server Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/8e13c5e1 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/8e13c5e1 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/8e13c5e1 Branch: refs/heads/master Commit: 8e13c5e18d023aa8116ea3351107ddeac3c8928f Parents: 111c01a Author: Andrea Cosentino <anco...@gmail.com> Authored: Sun Jul 12 15:49:55 2015 +0200 Committer: Andrea Cosentino <anco...@gmail.com> Committed: Sun Jul 12 15:52:54 2015 +0200 ---------------------------------------------------------------------- .../aggregate/zipfile/AggregationStrategyWithPreservationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/8e13c5e1/components/camel-zipfile/src/test/java/org/apache/camel/processor/aggregate/zipfile/AggregationStrategyWithPreservationTest.java ---------------------------------------------------------------------- diff --git a/components/camel-zipfile/src/test/java/org/apache/camel/processor/aggregate/zipfile/AggregationStrategyWithPreservationTest.java b/components/camel-zipfile/src/test/java/org/apache/camel/processor/aggregate/zipfile/AggregationStrategyWithPreservationTest.java index 9c40cad..f4fd199 100644 --- a/components/camel-zipfile/src/test/java/org/apache/camel/processor/aggregate/zipfile/AggregationStrategyWithPreservationTest.java +++ b/components/camel-zipfile/src/test/java/org/apache/camel/processor/aggregate/zipfile/AggregationStrategyWithPreservationTest.java @@ -78,7 +78,7 @@ public class AggregationStrategyWithPreservationTest extends CamelTestSupport { public void configure() throws Exception { // Unzip file and Split it according to FileEntry from("file:src/test/resources/org/apache/camel/aggregate/zipfile/data?consumer.delay=1000&noop=true&recursive=true") - .aggregate(new ZipAggregationStrategy(true)) + .aggregate(new ZipAggregationStrategy(true, true)) .constant(true) .completionFromBatchConsumer() .eagerCheckCompletion()