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/09/16 12:15:55 UTC

[camel-spring-boot] branch master updated (dfa6881 -> 36c0a86)

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-spring-boot.git.


    from dfa6881  Document Update
     new 16b6920  Document update
     new 36c0a86  Document Update

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:
 .../org/apache/camel/spring/boot/CamelConfigurationProperties.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[camel-spring-boot] 02/02: Document Update

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-spring-boot.git

commit 36c0a86b078e6d2494df4636c09479499f51ee92
Author: Nitesh Koushik S <39...@users.noreply.github.com>
AuthorDate: Wed Sep 16 17:40:39 2020 +0530

    Document Update
    
    Changes made from "have" to "has"
---
 .../java/org/apache/camel/spring/boot/CamelConfigurationProperties.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
index 256b5a1..8efc866 100644
--- a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
+++ b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
@@ -636,7 +636,7 @@ public class CamelConfigurationProperties extends DefaultConfigurationProperties
     /**
      * Experimental: Configure the context to be lightweight.
      * This will trigger some optimizations and memory reduction options.
-     * Lightweight context have some limitations.
+     * Lightweight context has some limitations.
      * At this moment, dynamic endpoint destinations are not supported.
      */
     private boolean lightweight;


[camel-spring-boot] 01/02: Document update

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-spring-boot.git

commit 16b692012e330ff9cbfc3508513176b7ad02037e
Author: Nitesh Koushik S <39...@users.noreply.github.com>
AuthorDate: Wed Sep 16 17:39:33 2020 +0530

    Document update
    
    Changes made from "determine"  to "determining"
---
 .../java/org/apache/camel/spring/boot/CamelConfigurationProperties.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
index 323b5e6..256b5a1 100644
--- a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
+++ b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
@@ -420,7 +420,7 @@ public class CamelConfigurationProperties extends DefaultConfigurationProperties
     private boolean useMdcLogging;
 
     /**
-     * Sets the pattern used for determine which custom MDC keys to propagate during message routing when
+     * Sets the pattern used for determining which custom MDC keys to propagate during message routing when
      * the routing engine continues routing asynchronously for the given message. Setting this pattern to * will
      * propagate all custom keys. Or setting the pattern to foo*,bar* will propagate any keys starting with
      * either foo or bar.