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
commit d335e5b6bf43c6b20faf47fa54eb2915c78f655b Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Sep 11 15:05:39 2020 +0200 Camel-AWS2-S3: Use localstack edge service --- .../org/apache/camel/component/aws2/s3/localstack/Aws2S3BaseTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/localstack/Aws2S3BaseTest.java b/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/localstack/Aws2S3BaseTest.java index a123d39..ae5b4ba 100644 --- a/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/localstack/Aws2S3BaseTest.java +++ b/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/localstack/Aws2S3BaseTest.java @@ -44,7 +44,7 @@ public class Aws2S3BaseTest extends ContainerAwareTestSupport { return new GenericContainer(CONTAINER_IMAGE) .withNetworkAliases(CONTAINER_NAME) .withEnv("SERVICES", "s3") - .withExposedPorts(4572) + .withExposedPorts(4566) .waitingFor(Wait.forListeningPort()) .waitingFor(Wait.forLogMessageContaining("Ready.", 1)); } @@ -53,7 +53,7 @@ public class Aws2S3BaseTest extends ContainerAwareTestSupport { return String.format( "%s:%d", getContainerHost(CONTAINER_NAME), - getContainerPort(CONTAINER_NAME, 4572)); + getContainerPort(CONTAINER_NAME, 4566)); } public S3Client getS3Client() {