diff options
author | Juuso Valli <juuso@vaadin.com> | 2014-07-18 10:34:25 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-07-21 06:38:58 +0000 |
commit | 6c529c98d68c6b0962b3f93c2385737f3ec711c4 (patch) | |
tree | 47f12e768deeba01ee58d89d2d439d01a740d326 /WebContent/WEB-INF/web.xml | |
parent | 928c10b6acf82b1495086adf761fff776d3bc249 (diff) | |
download | vaadin-framework-6c529c98d68c6b0962b3f93c2385737f3ec711c4.tar.gz vaadin-framework-6c529c98d68c6b0962b3f93c2385737f3ec711c4.zip |
Fix web.xml element order issue (#14257)
In some servlet definitions async-supported was before init-param
Change-Id: I2d4886a0aa4c37bad3b0385e25b51e91d59a4c31
Diffstat (limited to 'WebContent/WEB-INF/web.xml')
-rw-r--r-- | WebContent/WEB-INF/web.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebContent/WEB-INF/web.xml b/WebContent/WEB-INF/web.xml index fb2ddbd998..9ca5be2bdf 100644 --- a/WebContent/WEB-INF/web.xml +++ b/WebContent/WEB-INF/web.xml @@ -118,11 +118,11 @@ <param-name>pushmode</param-name> <param-value>automatic</param-value> </init-param> - <async-supported>true</async-supported> <init-param> <param-name>org.atmosphere.cpr.scanClassPath</param-name> <param-value>false</param-value> </init-param> + <async-supported>true</async-supported> </servlet> <!-- For testing GAE - the deployment script changes this to use GAEVaadinServlet --> @@ -133,11 +133,11 @@ <param-name>UI</param-name> <param-value>com.vaadin.tests.integration.ServletIntegrationUI</param-value> </init-param> - <async-supported>true</async-supported> <init-param> <param-name>org.atmosphere.cpr.scanClassPath</param-name> <param-value>false</param-value> </init-param> + <async-supported>true</async-supported> </servlet> <servlet-mapping> |