Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSimone Bordet2015-04-10 13:22:30 +0000
committerSimone Bordet2015-04-10 13:22:49 +0000
commitffadcd67576fd7fa5dbc81c5175552a85dce50fd (patch)
tree31d415ef168fd11363430a28f36e12b25aa58783 /tests
parentd89aa3a86615c64edb4bfb861b790d3f818716c5 (diff)
downloadorg.eclipse.jetty.project-ffadcd67576fd7fa5dbc81c5175552a85dce50fd.tar.gz
org.eclipse.jetty.project-ffadcd67576fd7fa5dbc81c5175552a85dce50fd.tar.xz
org.eclipse.jetty.project-ffadcd67576fd7fa5dbc81c5175552a85dce50fd.zip
444721 - PushCacheFilter cleanup/improvements.
Ported the "maxAssociations" functionality from SPDY's ReferrerPushStrategy. Added JMX support. Removed __renew__ special path in favour of a JMX method. Added clearPushCache() JMX method. Made push reentrant by eliminating the check for "org.eclipse.jetty.pushed".
Diffstat (limited to 'tests')
-rw-r--r--tests/test-webapps/test-jetty-webapp/src/main/webapp/WEB-INF/web.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-webapps/test-jetty-webapp/src/main/webapp/WEB-INF/web.xml b/tests/test-webapps/test-jetty-webapp/src/main/webapp/WEB-INF/web.xml
index f3ff1eaed6..bf3f3302d9 100644
--- a/tests/test-webapps/test-jetty-webapp/src/main/webapp/WEB-INF/web.xml
+++ b/tests/test-webapps/test-jetty-webapp/src/main/webapp/WEB-INF/web.xml
@@ -10,7 +10,7 @@
<context-param>
<param-name>org.eclipse.jetty.server.context.ManagedAttributes</param-name>
- <param-value>QoSFilter,TransparentProxy.ThreadPool,TransparentProxy.HttpClient</param-value>
+ <param-value>PushFilter,QoSFilter,TransparentProxy.ThreadPool,TransparentProxy.HttpClient</param-value>
</context-param>
<!-- Declare TestListener, which declares TestFilter -->

Back to the top