This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 9474f48 AWS2-S3: The autocreateBucket to false must be set on all
endpoints in Integration test
9474f48 is described below
commit 9474f489059a04cdac255c26f6fc7d409c0c818b
Author: Andrea Cosentino <[email protected]>
AuthorDate: Thu Jul 16 14:56:59 2020 +0200
AWS2-S3: The autocreateBucket to false must be set on all endpoints in
Integration test
---
.../camel/component/aws2/s3/integration/S3ConsumerIntegrationTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3ConsumerIntegrationTest.java
b/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3ConsumerIntegrationTest.java
index b13669a..b611935 100644
---
a/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3ConsumerIntegrationTest.java
+++
b/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3ConsumerIntegrationTest.java
@@ -88,7 +88,7 @@ public class S3ConsumerIntegrationTest extends
CamelTestSupport {
from("direct:putObject").startupOrder(1).to(awsEndpoint).to("mock:result");
-
from("aws2-s3://mycamel?moveAfterRead=true&destinationBucket=camel-kafka-connector").startupOrder(2).log("${body}");
+
from("aws2-s3://mycamel?moveAfterRead=true&destinationBucket=camel-kafka-connector&autoCreateBucket=false").startupOrder(2).log("${body}");
}
};