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 2020/10/03 14:34:12 UTC

[camel] branch master updated (a0e6470 -> f668efb)

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

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from a0e6470  CAMEL-15628: Fixed ArrayIndexOutOfBoundsException for concurrent / high throughtput routing with message history enabled.
     new c497cbc  Upgrade AWS SDK to version 2.15.2
     new f668efb  Regen and sync properties

The 2 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.


Summary of changes:
 camel-dependencies/pom.xml                                         | 2 +-
 .../resources/org/apache/camel/catalog/docs/message-history.adoc   | 7 ++++---
 .../org/apache/camel/processor/interceptor/DefaultDebugger.java    | 1 -
 parent/pom.xml                                                     | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)


[camel] 02/02: Regen and sync properties

Posted by ac...@apache.org.
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 f668efb690fab2932bce44e96dc3daa31ea510bb
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Sat Oct 3 16:33:20 2020 +0200

    Regen and sync properties
---
 camel-dependencies/pom.xml                                         | 2 +-
 .../resources/org/apache/camel/catalog/docs/message-history.adoc   | 7 ++++---
 .../org/apache/camel/processor/interceptor/DefaultDebugger.java    | 1 -
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 353392e..870783a 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -71,7 +71,7 @@
     <awaitility-version>4.0.3</awaitility-version>
     <aws-java-sdk-swf-libs>1.11.22</aws-java-sdk-swf-libs>
     <aws-java-sdk-version>1.11.714</aws-java-sdk-version>
-    <aws-java-sdk2-version>2.15.1</aws-java-sdk2-version>
+    <aws-java-sdk2-version>2.15.2</aws-java-sdk2-version>
     <aws-xray-version>2.6.1</aws-xray-version>
     <axiom-version>1.2.14</axiom-version>
     <azure-eventhubs-checkpointstore-blob-version>1.2.0</azure-eventhubs-checkpointstore-blob-version>
diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/message-history.adoc b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/message-history.adoc
index 170f59a..8d35000 100644
--- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/message-history.adoc
+++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/message-history.adoc
@@ -11,10 +11,11 @@ image::eip/MessageHistory.gif[image]
 
 Attaching a Message History to the message will provide a list of all applications that the message passed through since its origination.
 
-The message history is disabled by default (to optimize for lower footprint out of the box). You should only enable message history
+IMPORTANT: The message history is disabled by default (to optimize for lower footprint out of the box). You should only enable message history
 if needed, such as during development, where Camel can report route stack-traces when a message failed with an exception.
-But for production usage, then message history should only be enabled if you have monitoring systems that rely on gather these
-fine grained details.
+But for production usage, then message history should only be enabled if you have monitoring systems that rely on gathering these
+fine grained details. When message history is enabled then there is a slight performance overhead as the history data is stored
+in a `java.util.concurrent.CopyOnWriteArrayList` due to the need of being thread safe.
 
 == Enabling or disabling Message History
 
diff --git a/core/camel-base/src/main/java/org/apache/camel/processor/interceptor/DefaultDebugger.java b/core/camel-base/src/main/java/org/apache/camel/processor/interceptor/DefaultDebugger.java
index d25123b..29ea5fd 100644
--- a/core/camel-base/src/main/java/org/apache/camel/processor/interceptor/DefaultDebugger.java
+++ b/core/camel-base/src/main/java/org/apache/camel/processor/interceptor/DefaultDebugger.java
@@ -20,7 +20,6 @@ import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Collections;
 import java.util.HashMap;
-import java.util.LinkedList;
 import java.util.List;
 import java.util.Map;
 import java.util.concurrent.CopyOnWriteArrayList;


[camel] 01/02: Upgrade AWS SDK to version 2.15.2

Posted by ac...@apache.org.
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 c497cbc5fbad96853cc909ac505d446008b06c8a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Sat Oct 3 14:53:03 2020 +0200

    Upgrade AWS SDK to version 2.15.2
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 7640370..222ff7b 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -78,7 +78,7 @@
         <avro-ipc-netty-version>1.9.1</avro-ipc-netty-version>
         <awaitility-version>4.0.3</awaitility-version>
         <aws-java-sdk-version>1.11.714</aws-java-sdk-version>
-        <aws-java-sdk2-version>2.15.1</aws-java-sdk2-version>
+        <aws-java-sdk2-version>2.15.2</aws-java-sdk2-version>
         <aws-java-sdk-swf-libs>1.11.22</aws-java-sdk-swf-libs>
         <aws-xray-version>2.6.1</aws-xray-version>
         <axiom-version>1.2.14</axiom-version>