Skip to content

Commit

Permalink
Adjust buffer size to solve test failure in #125
Browse files Browse the repository at this point in the history
  • Loading branch information
twobiers authored and gunnarmorling committed Jan 5, 2024
1 parent e1f6a29 commit c24bcac
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 c24bcac

Please sign in to comment.