Updated default maxIdleTime for SPDYClient to -1, so that the default from the SelectorManager is used.

This commit is contained in:
Simone Bordet 2012-05-26 22:49:17 +02:00
parent f41e43bce3
commit 0ea58ab1d5
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class SPDYClient
private final short version;
private final Factory factory;
private SocketAddress bindAddress;
private long maxIdleTime;
private long maxIdleTime = -1;
protected SPDYClient(short version, Factory factory)
{