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:04 UTC

[camel] 02/05: CAMEL-15591 - Default Value is breaking Spring Boot generation for Zipfile 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 943df8b9ac872dd04146aae1c2a43f3d5ec4a353
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Oct 5 07:30:47 2020 +0200

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

diff --git a/core/camel-core-engine/src/main/java/org/apache/camel/model/dataformat/ZipFileDataFormat.java b/core/camel-core-engine/src/main/java/org/apache/camel/model/dataformat/ZipFileDataFormat.java
index 4a58042..32f9139 100644
--- a/core/camel-core-engine/src/main/java/org/apache/camel/model/dataformat/ZipFileDataFormat.java
+++ b/core/camel-core-engine/src/main/java/org/apache/camel/model/dataformat/ZipFileDataFormat.java
@@ -41,7 +41,7 @@ public class ZipFileDataFormat 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 ZipFileDataFormat() {