Author: jawi
Date: Sun Nov 10 18:36:07 2013
New Revision: 1540508
URL: http://svn.apache.org/r1540508
Log:
Fixed typo in default config.
Modified:
felix/trunk/http/jetty/src/main/java/org/apache/felix/http/jetty/internal/JettyConfig.java
Modified:
felix/trunk/http/jetty/src/main/java/org/apache/felix/http/jetty/internal/JettyConfig.java
URL:
http://svn.apache.org/viewvc/felix/trunk/http/jetty/src/main/java/org/apache/felix/http/jetty/internal/JettyConfig.java?rev=1540508&r1=1540507&r2=1540508&view=diff
==============================================================================
---
felix/trunk/http/jetty/src/main/java/org/apache/felix/http/jetty/internal/JettyConfig.java
(original)
+++
felix/trunk/http/jetty/src/main/java/org/apache/felix/http/jetty/internal/JettyConfig.java
Sun Nov 10 18:36:07 2013
@@ -287,7 +287,7 @@ public final class JettyConfig
this.useHttpsNio = getBooleanProperty(props, FELIX_HTTPS_NIO,
this.useHttpNio);
this.registerMBeans = getBooleanProperty(props, FELIX_HTTP_MBEANS,
false);
this.sessionTimeout = getIntProperty(props, FELIX_SESSION_TIMEOUT, 0);
- this.requestBufferSize =
getIntProperty(FELIX_JETTY_REQUEST_BUFFER_SIZE, 8 * 014);
+ this.requestBufferSize =
getIntProperty(FELIX_JETTY_REQUEST_BUFFER_SIZE, 8 * 1024);
this.responseBufferSize =
getIntProperty(FELIX_JETTY_RESPONSE_BUFFER_SIZE, 24 * 1024);
this.contextPath = validateContextPath(getProperty(props,
FELIX_HTTP_CONTEXT_PATH, null));
this.pathExclusions = getStringArrayProperty(props,
FELIX_HTTP_PATH_EXCLUSIONS, new String[] { "/system" });