Skip to content

Commit

Permalink
increase MAX_CHUNK_SIZE in FormattedByteChannel
Browse files Browse the repository at this point in the history
  • Loading branch information
smiklosovic committed Jul 11, 2024
1 parent aa129bf commit ac2ad3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

public class FormattedByteChannel implements ReadableByteChannel {
public static final int MIN_CHUNK_SIZE = 1024 * 1024;
public static final int MAX_CHUNK_SIZE = MIN_CHUNK_SIZE * 5;
public static final int MAX_CHUNK_SIZE = MIN_CHUNK_SIZE * 50;

private final FormattedExposition formattedExposition;

Expand Down

0 comments on commit ac2ad3a

Please sign in to comment.