You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2012/06/20 16:06:28 UTC

svn commit: r1352115 - in /camel/branches/camel-2.8.x: ./ components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationMessage.java

Author: davsclaus
Date: Wed Jun 20 14:06:27 2012
New Revision: 1352115

URL: http://svn.apache.org/viewvc?rev=1352115&view=rev
Log:
CAMEL-5381: Fixed headers not propagated, due copyFrom should check if trying to copy itself.

Modified:
    camel/branches/camel-2.8.x/   (props changed)
    camel/branches/camel-2.8.x/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationMessage.java

Propchange: camel/branches/camel-2.8.x/
------------------------------------------------------------------------------
  Merged /camel/trunk:r1352108
  Merged /camel/branches/camel-2.9.x:r1352112

Propchange: camel/branches/camel-2.8.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: camel/branches/camel-2.8.x/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationMessage.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationMessage.java?rev=1352115&r1=1352114&r2=1352115&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationMessage.java (original)
+++ camel/branches/camel-2.8.x/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationMessage.java Wed Jun 20 14:06:27 2012
@@ -46,6 +46,11 @@ public class SpringIntegrationMessage ex
 
     @Override
     public void copyFrom(org.apache.camel.Message that) {
+        if (that == this) {
+            // the same instance so do not need to copy
+            return;
+        }
+
         setMessageId(that.getMessageId());
         setBody(that.getBody());
         getHeaders().putAll(that.getHeaders());