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 ae4672ad7bc90b250aabfa073de42ad8c4c20ba9 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Mar 1 08:31:16 2021 +0100 CAMEL-16171 - Add uri-endpoint-override options to all AWS2 components - AWS2-ECS component --- .../camel/component/aws2/ecs/ECS2ComponentConfigurationTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ComponentConfigurationTest.java b/components/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ComponentConfigurationTest.java index 7e0b39c..9cd655a 100644 --- a/components/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ComponentConfigurationTest.java +++ b/components/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ComponentConfigurationTest.java @@ -73,7 +73,8 @@ public class ECS2ComponentConfigurationTest extends CamelTestSupport { public void createEndpointWithEndpointOverride() throws Exception { ECS2Component component = context.getComponent("aws2-ecs", ECS2Component.class); ECS2Endpoint endpoint - = (ECS2Endpoint) component.createEndpoint("aws2-ecs://label?accessKey=xxxxxx&secretKey=yyyyy®ion=US_EAST_1&overrideEndpoint=true&uriEndpointOverride=http://localhost:9090"); + = (ECS2Endpoint) component.createEndpoint( + "aws2-ecs://label?accessKey=xxxxxx&secretKey=yyyyy®ion=US_EAST_1&overrideEndpoint=true&uriEndpointOverride=http://localhost:9090"); assertEquals("xxxxxx", endpoint.getConfiguration().getAccessKey()); assertEquals("yyyyy", endpoint.getConfiguration().getSecretKey());