INT-1367 Revert Increase Pipe Size to 2048 (Java 6 only)
This commit is contained in:
@@ -75,7 +75,7 @@ public class TcpNioConnection extends AbstractTcpConnection {
|
||||
public TcpNioConnection(SocketChannel socketChannel, boolean server) throws Exception {
|
||||
super(server);
|
||||
this.socketChannel = socketChannel;
|
||||
this.pipedInputStream = new PipedInputStream(2048);
|
||||
this.pipedInputStream = new PipedInputStream();
|
||||
this.pipedOutputStream = new PipedOutputStream(this.pipedInputStream);
|
||||
this.channelOutputStream = new ChannelOutputStream();
|
||||
getConnectionId();
|
||||
|
||||
Reference in New Issue
Block a user