Skip to content

Commit

Permalink
Adjust buffer size to solve test failure in gunnarmorling#125
Browse files Browse the repository at this point in the history
  • Loading branch information
twobiers committed Jan 5, 2024
1 parent 2ec6b35 commit 2d6afd0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ private static List<Measurement> parseMeasurements(ByteBuffer byteBuffer) {
var measurements = new ArrayList<Measurement>(100_000);

final int limit = byteBuffer.limit();
final byte[] buffer = new byte[64];
final byte[] buffer = new byte[128];

while (byteBuffer.position() < limit) {
final int start = byteBuffer.position();
Expand Down

0 comments on commit 2d6afd0

Please sign in to comment.