Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2013-04-26 03:53:28 +0000
committerGreg Wilkins2013-04-26 03:53:28 +0000
commit9558d7e815ac9815bdfbb8820177384a8d5e16eb (patch)
treef0c738f8f3c6097dee8beb6872e5f9c99f2e7260 /jetty-server/src/main/config/etc/jetty-lowresources.xml
parentdbedbfa67e2ccfb41cb41de6f6bb65961a5ea315 (diff)
downloadorg.eclipse.jetty.project-9558d7e815ac9815bdfbb8820177384a8d5e16eb.tar.gz
org.eclipse.jetty.project-9558d7e815ac9815bdfbb8820177384a8d5e16eb.tar.xz
org.eclipse.jetty.project-9558d7e815ac9815bdfbb8820177384a8d5e16eb.zip
modular start.ini files and --download start option
Diffstat (limited to 'jetty-server/src/main/config/etc/jetty-lowresources.xml')
-rw-r--r--jetty-server/src/main/config/etc/jetty-lowresources.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/jetty-server/src/main/config/etc/jetty-lowresources.xml b/jetty-server/src/main/config/etc/jetty-lowresources.xml
index 5b264f1749..060919a8d3 100644
--- a/jetty-server/src/main/config/etc/jetty-lowresources.xml
+++ b/jetty-server/src/main/config/etc/jetty-lowresources.xml
@@ -10,12 +10,12 @@
<Arg>
<New class="org.eclipse.jetty.server.LowResourceMonitor">
<Arg name="server"><Ref refid='Server'/></Arg>
- <Set name="period">1000</Set>
- <Set name="lowResourcesIdleTimeout">200</Set>
- <Set name="monitorThreads">true</Set>
- <Set name="maxConnections">0</Set>
- <Set name="maxMemory">0</Set>
- <Set name="maxLowResourcesTime">5000</Set>
+ <Set name="period"><Property name="lowresources.period" default="1000"/></Set>
+ <Set name="lowResourcesIdleTimeout"><Property name="lowresources.lowResourcesIdleTimeout" default="200"/></Set>
+ <Set name="monitorThreads"><Property name="lowresources.monitorThreads" default="true"/></Set>
+ <Set name="maxConnections"><Property name="lowresources.maxConnections" default="0"/></Set>
+ <Set name="maxMemory"><Property name="lowresources.maxMemory" default="0"/></Set>
+ <Set name="maxLowResourcesTime"><Property name="lowresources.maxLowResourcesTime" default="5000"/></Set>
</New>
</Arg>
</Call>

Back to the top