INT-1367 Revert Increase Pipe Size to 2048 (Java 6 only)

This commit is contained in:
Gary Russell
2010-08-23 19:44:25 +00:00
parent 51f485847b
commit 1fa165de3a

View File

@@ -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();