aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/launcher
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-09-24 08:54:50 +0300
committerArtur Signell <artur@vaadin.com>2012-09-24 12:06:20 +0300
commit45332b5744d886e36bb999a48f0de26161458066 (patch)
tree2ed18ecabfc86b37b872ed25b1aa2c565d5f39e2 /uitest/src/com/vaadin/launcher
parentb6f3d703051ec6bc471eac1f77c78e22cbb71393 (diff)
downloadvaadin-framework-45332b5744d886e36bb999a48f0de26161458066.tar.gz
vaadin-framework-45332b5744d886e36bb999a48f0de26161458066.zip
Fixed serialization issues (#9640)
ConnectorTracker diff state is now transient and thus not serialized. This could be improved in the future (#9717)
Diffstat (limited to 'uitest/src/com/vaadin/launcher')
-rw-r--r--uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java b/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java
index 5a2e9c30a9..b121ae7992 100644
--- a/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java
+++ b/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java
@@ -53,7 +53,7 @@ public class ApplicationRunnerServlet extends LegacyVaadinServlet {
*/
private LinkedHashSet<String> defaultPackages = new LinkedHashSet<String>();
- private final ThreadLocal<HttpServletRequest> request = new ThreadLocal<HttpServletRequest>();
+ private transient final ThreadLocal<HttpServletRequest> request = new ThreadLocal<HttpServletRequest>();
@Override
public void init(ServletConfig servletConfig) throws ServletException {