You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by co...@apache.org on 2020/03/17 08:12:15 UTC

[camel] branch camel-3.1.x updated (c7d6a6b -> 60df071)

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

coheigea pushed a change to branch camel-3.1.x
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from c7d6a6b  CAMEL-14711 - Disable RabbitMQ Java serialization by default (#3633)
     new 6501284  Minor change
     new 60df071  Fixing cs

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:
 .../main/java/org/apache/camel/component/rabbitmq/RabbitMQEndpoint.java | 1 +
 .../main/java/org/apache/camel/impl/engine/AbstractCamelContext.java    | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


[camel] 01/02: Minor change

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

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

commit 65012848f55d72ec2e622a1bf6f32606fa3249e0
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Tue Mar 17 08:10:37 2020 +0000

    Minor change
---
 .../main/java/org/apache/camel/component/rabbitmq/RabbitMQEndpoint.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/components/camel-rabbitmq/src/main/java/org/apache/camel/component/rabbitmq/RabbitMQEndpoint.java b/components/camel-rabbitmq/src/main/java/org/apache/camel/component/rabbitmq/RabbitMQEndpoint.java
index 396b496..5eb9672 100644
--- a/components/camel-rabbitmq/src/main/java/org/apache/camel/component/rabbitmq/RabbitMQEndpoint.java
+++ b/components/camel-rabbitmq/src/main/java/org/apache/camel/component/rabbitmq/RabbitMQEndpoint.java
@@ -168,6 +168,7 @@ public class RabbitMQEndpoint extends DefaultEndpoint implements AsyncEndpoint {
     private boolean allowNullHeaders;
     @UriParam(label = "allowMessageBodySerialization", defaultValue = "false")
     private boolean allowMessageBodySerialization;
+    // camel-jms supports this setting but it is not currently configurable in camel-rabbitmq
     private boolean useMessageIDAsCorrelationID = true;
     // camel-jms supports this setting but it is not currently configurable in camel-rabbitmq
     private String replyToType = ReplyToType.Temporary.name();


[camel] 02/02: Fixing cs

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

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

commit 60df071d834c8aa18fbc56fdcaaa4b24d2b1c51d
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Tue Mar 17 08:11:51 2020 +0000

    Fixing cs
---
 .../main/java/org/apache/camel/impl/engine/AbstractCamelContext.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-base/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java b/core/camel-base/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
index ed45dc5..e892447 100644
--- a/core/camel-base/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
+++ b/core/camel-base/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
@@ -351,7 +351,7 @@ public abstract class AbstractCamelContext extends ServiceSupport implements Ext
 
     @Override
     public void doInit() throws Exception {
-    	
+
         // Initialize LRUCacheFactory as eager as possible, 
         // to let it warm up concurrently while Camel is startup up
         if (initialization != Initialization.Lazy) {