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:14 UTC

[camel] 02/02: Regen and sync properties

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;