Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.

Commit ac2ad3a

Browse files
committed
increase MAX_CHUNK_SIZE in FormattedByteChannel
1 parent aa129bf commit ac2ad3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

common/src/main/java/com/zegelin/prometheus/exposition/FormattedByteChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
public class FormattedByteChannel implements ReadableByteChannel {
77
public static final int MIN_CHUNK_SIZE = 1024 * 1024;
8-
public static final int MAX_CHUNK_SIZE = MIN_CHUNK_SIZE * 5;
8+
public static final int MAX_CHUNK_SIZE = MIN_CHUNK_SIZE * 50;
99

1010
private final FormattedExposition formattedExposition;
1111

0 commit comments

Comments
 (0)