Skip to content

Commit b9477b7

Browse files
committed
Disable timeout for connections.
1 parent 0b14250 commit b9477b7

File tree

1 file changed

+3
-3
lines changed
  • java-components/domain-proxy/common/src/main/java/com/redhat/hacbs/domainproxy/common

1 file changed

+3
-3
lines changed

java-components/domain-proxy/common/src/main/java/com/redhat/hacbs/domainproxy/common/CommonIOUtil.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ public static Runnable channelToChannelBiDirectionalHandler(final int byteBuffer
8383
}
8484
}
8585
}
86-
if (System.currentTimeMillis() - bytesTransferredTime > TIMEOUT_MS) {
87-
break;
88-
}
86+
// if (System.currentTimeMillis() - bytesTransferredTime > TIMEOUT_MS) {
87+
// break;
88+
// }
8989
}
9090
} catch (final IOException e) {
9191
LOG.errorf(e, "Error in bi-directional channel handling");

0 commit comments

Comments
 (0)