You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/04/09 09:45:59 UTC

[camel] branch master updated: CAMEL-16399 - Add DynamoDB and DynamoDB Streams to camel-test-infra-aws-v2 module - DynamoDB

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 01d614c  CAMEL-16399 - Add DynamoDB and DynamoDB Streams to camel-test-infra-aws-v2 module - DynamoDB
01d614c is described below

commit 01d614cb64447fbb4a890f65f4b123116ee1ff53
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Apr 9 11:45:29 2021 +0200

    CAMEL-16399 - Add DynamoDB and DynamoDB Streams to camel-test-infra-aws-v2 module - DynamoDB
---
 .../org/apache/camel/component/aws2/ddb/localstack/Aws2DDBBase.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-aws/camel-aws2-ddb/src/test/java/org/apache/camel/component/aws2/ddb/localstack/Aws2DDBBase.java b/components/camel-aws/camel-aws2-ddb/src/test/java/org/apache/camel/component/aws2/ddb/localstack/Aws2DDBBase.java
index 9f81df6..2f41c71 100644
--- a/components/camel-aws/camel-aws2-ddb/src/test/java/org/apache/camel/component/aws2/ddb/localstack/Aws2DDBBase.java
+++ b/components/camel-aws/camel-aws2-ddb/src/test/java/org/apache/camel/component/aws2/ddb/localstack/Aws2DDBBase.java
@@ -34,8 +34,8 @@ public class Aws2DDBBase extends CamelTestSupport {
     @Override
     protected CamelContext createCamelContext() throws Exception {
         CamelContext context = super.createCamelContext();
-        Ddb2Component eventbridgeComponent = context.getComponent("aws2-ddb", Ddb2Component.class);
-        eventbridgeComponent.getConfiguration().setAmazonDDBClient(AWSSDKClientUtils.newDynamoDBClient());
+        Ddb2Component ddb2Component = context.getComponent("aws2-ddb", Ddb2Component.class);
+        ddb2Component.getConfiguration().setAmazonDDBClient(AWSSDKClientUtils.newDynamoDBClient());
         return context;
     }
 }