You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ta...@apache.org on 2019/10/10 03:03:50 UTC

svn commit: r1868211 - /poi/trunk/src/java/org/apache/poi/hpsf/Blob.java

Author: tallison
Date: Thu Oct 10 03:03:50 2019
New Revision: 1868211

URL: http://svn.apache.org/viewvc?rev=1868211&view=rev
Log:
bumping minimum record length based on user feedback on tika-dev list

Modified:
    poi/trunk/src/java/org/apache/poi/hpsf/Blob.java

Modified: poi/trunk/src/java/org/apache/poi/hpsf/Blob.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hpsf/Blob.java?rev=1868211&r1=1868210&r2=1868211&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hpsf/Blob.java (original)
+++ poi/trunk/src/java/org/apache/poi/hpsf/Blob.java Thu Oct 10 03:03:50 2019
@@ -24,7 +24,7 @@ import org.apache.poi.util.LittleEndianI
 public class Blob {
 
     //arbitrarily selected; may need to increase
-    private static final int MAX_RECORD_LENGTH = 1_000_000;
+    private static final int MAX_RECORD_LENGTH = 10_000_000;
 
     private byte[] _value;
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org