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 2018/07/25 08:07:48 UTC

[camel] branch camel-2.21.x updated: CAMEL-12681 : BreadcrumbId not required for aws-sqs aws-sns endpoints

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

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


The following commit(s) were added to refs/heads/camel-2.21.x by this push:
     new 1bb83f7  CAMEL-12681 : BreadcrumbId not required for aws-sqs aws-sns endpoints
1bb83f7 is described below

commit 1bb83f74b348c5f28662c39810d454a572a6c0f0
Author: Saravanakumar Selvaraj <sa...@gmail.com>
AuthorDate: Wed Jul 25 02:56:57 2018 +0530

    CAMEL-12681 : BreadcrumbId not required for aws-sqs aws-sns endpoints
---
 .../org/apache/camel/component/aws/sns/SnsHeaderFilterStrategy.java     | 2 +-
 .../org/apache/camel/component/aws/sqs/SqsHeaderFilterStrategy.java     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/sns/SnsHeaderFilterStrategy.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/sns/SnsHeaderFilterStrategy.java
index fb51835..1aa2e06 100644
--- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/sns/SnsHeaderFilterStrategy.java
+++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/sns/SnsHeaderFilterStrategy.java
@@ -25,6 +25,6 @@ public class SnsHeaderFilterStrategy extends DefaultHeaderFilterStrategy {
 
     protected void initialize() {
         // filter headers begin with "Camel" or "org.apache.camel"
-        setOutFilterPattern("(Camel|org\\.apache\\.camel)[\\.|a-z|A-z|0-9]*"); 
+        setOutFilterPattern("(breadcrumbId|Camel|org\\.apache\\.camel)[\\.|a-z|A-z|0-9]*"); 
     }
 }
diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsHeaderFilterStrategy.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsHeaderFilterStrategy.java
index fb5f425..78fea47 100644
--- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsHeaderFilterStrategy.java
+++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsHeaderFilterStrategy.java
@@ -25,6 +25,6 @@ public class SqsHeaderFilterStrategy extends DefaultHeaderFilterStrategy {
 
     protected void initialize() {
         // filter headers begin with "Camel" or "org.apache.camel"
-        setOutFilterPattern("(Camel|org\\.apache\\.camel)[\\.|a-z|A-z|0-9]*"); 
+        setOutFilterPattern("(breadcrumbId|Camel|org\\.apache\\.camel)[\\.|a-z|A-z|0-9]*"); 
     }
 }