This is an automated email from the ASF dual-hosted git repository.

davsclaus 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 f09ca59  CAMEL-16171 - Add uri-endpoint-override options to all AWS2 
components - AWS2-MQ component
f09ca59 is described below

commit f09ca59ab1450bc3649979ebc398a3d95bfcef71
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Wed Mar 3 16:54:39 2021 +0100

    CAMEL-16171 - Add uri-endpoint-override options to all AWS2 components - 
AWS2-MQ component
---
 .../apache/camel/component/aws2/mq/MQComponentConfigurationTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-aws2-mq/src/test/java/org/apache/camel/component/aws2/mq/MQComponentConfigurationTest.java
 
b/components/camel-aws2-mq/src/test/java/org/apache/camel/component/aws2/mq/MQComponentConfigurationTest.java
index 3e312c6..58f40d9 100644
--- 
a/components/camel-aws2-mq/src/test/java/org/apache/camel/component/aws2/mq/MQComponentConfigurationTest.java
+++ 
b/components/camel-aws2-mq/src/test/java/org/apache/camel/component/aws2/mq/MQComponentConfigurationTest.java
@@ -77,7 +77,7 @@ public class MQComponentConfigurationTest extends 
CamelTestSupport {
         component.getConfiguration().setRegion(Region.US_WEST_1.toString());
         MQ2Endpoint endpoint
                 = (MQ2Endpoint) component.createEndpoint(
-                        
"aws2-mq://MyQueue?accessKey=xxxxxx&secretKey=yyyyy&region=US_EAST_1overrideEndpoint=true&uriEndpointOverride=http://localhost:9090";);
+                        
"aws2-mq://MyQueue?accessKey=xxxxxx&secretKey=yyyyy&region=US_EAST_1&overrideEndpoint=true&uriEndpointOverride=http://localhost:9090";);
 
         assertEquals("xxxxxx", endpoint.getConfiguration().getAccessKey());
         assertEquals("yyyyy", endpoint.getConfiguration().getSecretKey());

Reply via email to