This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch camel-4.4.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.4.x by this push:
new 7f7672ffd13 CAMEL-20614: deep-copy enrich and poll-enrich processors
during instantiation of a route template
7f7672ffd13 is described below
commit 7f7672ffd13ee0ce61aa1fc31bf354e3ec8224ea
Author: Claus Ibsen <[email protected]>
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;