From 5a8a17ef2ea2751e97f69aced2a68afc9e1adcf6 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Sat, 15 Feb 2025 23:19:08 -0500 Subject: [PATCH] Console should get much smarter around compatibility with older units #6845 only:uaefi --- java_console/io/src/main/java/com/rusefi/io/ByteReader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java_console/io/src/main/java/com/rusefi/io/ByteReader.java b/java_console/io/src/main/java/com/rusefi/io/ByteReader.java index b051e8e8c8..bf7202428c 100644 --- a/java_console/io/src/main/java/com/rusefi/io/ByteReader.java +++ b/java_console/io/src/main/java/com/rusefi/io/ByteReader.java @@ -27,7 +27,7 @@ public interface ByteReader { threadExecutor.execute(() -> { log.info(loggingPrefix + "Running TCP connection loop"); - byte[] inputBuffer = new byte[Fields.BLOCKING_FACTOR * 2]; + byte[] inputBuffer = new byte[64 * 1024]; while (!ioStream.isClosed()) { try { int result = reader.read(inputBuffer);