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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new b8b297494a2 CAMEL-20614: deep-copy enrich and poll-enrich processors 
during instantiation of a route template
b8b297494a2 is described below

commit b8b297494a2c5d4a3d8a4bb565e024b21ee1ce6b
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Fri Apr 26 11:14:54 2024 +0200

    CAMEL-20614: deep-copy enrich and poll-enrich processors during 
instantiation of a route template
---
 .../src/main/java/org/apache/camel/model/EnrichDefinition.java           | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/core/camel-core-model/src/main/java/org/apache/camel/model/EnrichDefinition.java
 
b/core/camel-core-model/src/main/java/org/apache/camel/model/EnrichDefinition.java
index ba904e06f27..547feb22766 100644
--- 
a/core/camel-core-model/src/main/java/org/apache/camel/model/EnrichDefinition.java
+++ 
b/core/camel-core-model/src/main/java/org/apache/camel/model/EnrichDefinition.java
@@ -81,6 +81,7 @@ public class EnrichDefinition extends ExpressionNode
     }
 
     protected EnrichDefinition(EnrichDefinition source) {
+        super(source);
         this.aggregationStrategyBean = source.aggregationStrategyBean;
         this.variableSend = source.variableSend;
         this.variableReceive = source.variableReceive;

Reply via email to