Console should get much smarter around compatibility with older units #6845
only:uaefi
This commit is contained in:
parent
a600e426b8
commit
5a8a17ef2e
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue