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 2024/03/11 13:31:41 UTC

(camel) branch CAMEL-20544-1 created (now 09c7f1d5815)

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

acosentino pushed a change to branch CAMEL-20544-1
in repository https://gitbox.apache.org/repos/asf/camel.git


      at 09c7f1d5815 CAMEL-20544 - Camel-AWS-Bedrock-Agent: Add a consumer for polling the status of ingestion or more ingestions, don't log body and headers in integration tests

This branch includes the following new commits:

     new 09c7f1d5815 CAMEL-20544 - Camel-AWS-Bedrock-Agent: Add a consumer for polling the status of ingestion or more ingestions, don't log body and headers in integration tests

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



(camel) 01/01: CAMEL-20544 - Camel-AWS-Bedrock-Agent: Add a consumer for polling the status of ingestion or more ingestions, don't log body and headers in integration tests

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch CAMEL-20544-1
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 09c7f1d5815cb7c2cd3929d74aedf4804ce0dd30
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Mar 11 14:31:02 2024 +0100

    CAMEL-20544 - Camel-AWS-Bedrock-Agent: Add a consumer for polling the status of ingestion or more ingestions, don't log body and headers in integration tests
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../component/aws2/bedrock/agent/integration/BedrockAgentConsumerIT.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/components/camel-aws/camel-aws-bedrock/src/test/java/org/apache/camel/component/aws2/bedrock/agent/integration/BedrockAgentConsumerIT.java b/components/camel-aws/camel-aws-bedrock/src/test/java/org/apache/camel/component/aws2/bedrock/agent/integration/BedrockAgentConsumerIT.java
index 0c8eae94801..7dc61da9c60 100644
--- a/components/camel-aws/camel-aws-bedrock/src/test/java/org/apache/camel/component/aws2/bedrock/agent/integration/BedrockAgentConsumerIT.java
+++ b/components/camel-aws/camel-aws-bedrock/src/test/java/org/apache/camel/component/aws2/bedrock/agent/integration/BedrockAgentConsumerIT.java
@@ -52,7 +52,6 @@ class BedrockAgentConsumerIT extends CamelTestSupport {
             @Override
             public void configure() {
                 from("aws-bedrock-agent:label?accessKey=RAW({{aws.manual.access.key}})&secretKey=RAW({{aws.manual.secret.key}}&region=us-east-1&knowledgeBaseId=AJHTAIUSJP&dataSourceId=AJX8Z7JX9J&ingestionJobId=YOWE23OBEB")
-                        .log("${body} and ${headers}")
                         .to(result);
             }
         };