diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2012-11-01 15:10:40 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-11-20 11:25:37 +0000 |
commit | 1384f1eb2c973252da27d6e379d8b863d912b22e (patch) | |
tree | e2aad5da0e41b03dc9cb05e84e3b8e09ee9d7cbf /WebContent/WEB-INF | |
parent | 0e8647784782e132bed9ec93ed47ea876f753534 (diff) | |
download | vaadin-framework-1384f1eb2c973252da27d6e379d8b863d912b22e.tar.gz vaadin-framework-1384f1eb2c973252da27d6e379d8b863d912b22e.zip |
When closeIdleUIs is true, close open UIs only after all UIs have been idle for longer than the session timeout
* Rename closeIdleUIs to closeIdleSessions, isIdleUICleanupEnabled to isCloseIdleSessions (#10252)
* Close the whole session at the same time as well
* Move UI lastUidlRequestTime to VaadinSession lastRequestTimestamp (#10253)
* Rename VaadinSession lastRequestTime to lastRequestDuration, totalSessionTime to cumulativeRequestDuration (#10253)
* Rename UI lastHeartbeatTime to lastHeartbeatTimestamp
* Show "Session Expired" notification when a heartbeat fails because of this
Change-Id: If3d4bd9add9995f435c29812eec00b3a3a92a6e6
Diffstat (limited to 'WebContent/WEB-INF')
-rw-r--r-- | WebContent/WEB-INF/web.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebContent/WEB-INF/web.xml b/WebContent/WEB-INF/web.xml index 820eb2cbce..cd1f0a75cc 100644 --- a/WebContent/WEB-INF/web.xml +++ b/WebContent/WEB-INF/web.xml @@ -61,7 +61,7 @@ <param-value>3601</param-value> </init-param> <init-param> - <param-name>closeIdleUIs</param-name> + <param-name>closeIdleSessions</param-name> <param-value>true</param-value> </init-param> <init-param> |