You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/10/05 06:05:06 UTC

[camel] 04/05: CAMEL-15591 - Default Value is breaking Spring Boot generation for Tarfile starter

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

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

commit c8e4889756b8a38ec098fc990de58b50eca62c21
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Oct 5 07:31:44 2020 +0200

    CAMEL-15591 - Default Value is breaking Spring Boot generation for Tarfile starter
---
 .../main/java/org/apache/camel/model/dataformat/TarFileDataFormat.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-core-engine/src/main/java/org/apache/camel/model/dataformat/TarFileDataFormat.java b/core/camel-core-engine/src/main/java/org/apache/camel/model/dataformat/TarFileDataFormat.java
index 205178c..f92240c 100644
--- a/core/camel-core-engine/src/main/java/org/apache/camel/model/dataformat/TarFileDataFormat.java
+++ b/core/camel-core-engine/src/main/java/org/apache/camel/model/dataformat/TarFileDataFormat.java
@@ -41,7 +41,7 @@ public class TarFileDataFormat extends DataFormatDefinition {
     @Metadata(javaType = "java.lang.Boolean")
     private String preservePathElements;
     @XmlAttribute
-    @Metadata(javaType = "java.lang.Long", defaultValue = "1073741824L")
+    @Metadata(javaType = "java.lang.Long", defaultValue = "1073741824")
     private String maxDecompressedSize;
 
     public TarFileDataFormat() {