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 2023/04/27 08:04:53 UTC

[camel] branch main updated: camel-core-model - Default value should not be hardcoded in attributes as they would leak when dumping.

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 faf56990f2e camel-core-model - Default value should not be hardcoded in attributes as they would leak when dumping.
faf56990f2e is described below

commit faf56990f2e071672b4dbb9128b1bb78ef099e40
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Apr 27 10:04:40 2023 +0200

    camel-core-model - Default value should not be hardcoded in attributes as they would leak when dumping.
---
 .../src/main/java/org/apache/camel/model/AggregateDefinition.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-core-model/src/main/java/org/apache/camel/model/AggregateDefinition.java b/core/camel-core-model/src/main/java/org/apache/camel/model/AggregateDefinition.java
index f58540cd228..e5b8f7702c2 100644
--- a/core/camel-core-model/src/main/java/org/apache/camel/model/AggregateDefinition.java
+++ b/core/camel-core-model/src/main/java/org/apache/camel/model/AggregateDefinition.java
@@ -121,7 +121,7 @@ public class AggregateDefinition extends OutputDefinition<AggregateDefinition>
     private String completionTimeout;
     @XmlAttribute
     @Metadata(label = "advanced", defaultValue = "1000", javaType = "java.time.Duration")
-    private String completionTimeoutCheckerInterval = "1000";
+    private String completionTimeoutCheckerInterval;
     @XmlAttribute
     @Metadata(label = "advanced", javaType = "java.lang.Boolean")
     private String completionFromBatchConsumer;