Skip to content

Commit

Permalink
bz1148565 The idle timeout is supposed to be 5 minutes, not 30 seconds.
Browse files Browse the repository at this point in the history
This gives client browsers an opportunity to handle their own keep-alive timeouts allowing for SSLSession re-use on re-establishment of the connection.
  • Loading branch information
darranl committed Oct 2, 2014
1 parent 55e24fd commit b864926
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -40,7 +40,7 @@ class ServerConfig {
static final int DEFAULT_CLOCK_TICK = 10000; // 10 sec.

/* These values must be a reasonable multiple of clockTick */
static final long DEFAULT_IDLE_INTERVAL = 30; // 5 min
static final long DEFAULT_IDLE_INTERVAL = 300; // 5 min i.e. 300 seconds.
static final int DEFAULT_MAX_IDLE_CONNECTIONS = 200;

static final long DEFAULT_MAX_REQ_TIME = -1; // default: forever
Expand Down

0 comments on commit b864926

Please sign in to comment.