Console should get much smarter around compatibility with older units #6845

only:uaefi
This commit is contained in:
rusefillc 2025-02-15 23:19:08 -05:00
parent a600e426b8
commit 5a8a17ef2e
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ public interface ByteReader {
threadExecutor.execute(() -> { threadExecutor.execute(() -> {
log.info(loggingPrefix + "Running TCP connection loop"); log.info(loggingPrefix + "Running TCP connection loop");
byte[] inputBuffer = new byte[Fields.BLOCKING_FACTOR * 2]; byte[] inputBuffer = new byte[64 * 1024];
while (!ioStream.isClosed()) { while (!ioStream.isClosed()) {
try { try {
int result = reader.read(inputBuffer); int result = reader.read(inputBuffer);