Skip to content

Commit

Permalink
[JENKINS-49596] - Backport the default session eviction timeout value…
Browse files Browse the repository at this point in the history
… fix to 4.1.2
  • Loading branch information
oleg-nenashev committed Feb 23, 2018
1 parent 80fec81 commit 9c448be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/java/winstone/cmdline/Option.java
Expand Up @@ -97,7 +97,7 @@ public static List<Option<?>> all(Class<?> clazz) {
public static final OInt MAX_PARAM_COUNT=integer("maxParamCount",-1);
public static final OBoolean USAGE=bool("usage",false);
public static final OInt SESSION_TIMEOUT=integer("sessionTimeout",-1);
public static final OInt SESSION_EVICTION=integer("sessionEviction",180);
public static final OInt SESSION_EVICTION=integer("sessionEviction",1800);
public static final OInt REQUEST_HEADER_SIZE=integer("requestHeaderSize",8192); // default for jetty 9
public static final OInt REQUEST_FORM_CONTENT_SIZE=integer("requestFormContentSize",-1); // no limit (compat with old winstone)
public static final OBoolean HELP=bool("help",false);
Expand Down

0 comments on commit 9c448be

Please sign in to comment.