From 295f116b91789bc0ff5422e54f2df4e59eb53294 Mon Sep 17 00:00:00 2001 From: Henri Sara Date: Mon, 4 Aug 2014 08:23:01 +0300 Subject: [PATCH] Increase TB3 socket timeout to 30 min (#14352) This increases the timeout from 15 to 30 minutes to avoid occasional timeouts at times of test cluster congestion. The timeout was originally reduced for #14298. Change-Id: I59e8ad892356c94954d0d20884319de653704ca4 --- uitest/src/com/vaadin/tests/tb3/TB3Runner.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uitest/src/com/vaadin/tests/tb3/TB3Runner.java b/uitest/src/com/vaadin/tests/tb3/TB3Runner.java index 4241b9fa6c..0d540644bf 100644 --- a/uitest/src/com/vaadin/tests/tb3/TB3Runner.java +++ b/uitest/src/com/vaadin/tests/tb3/TB3Runner.java @@ -57,10 +57,10 @@ public class TB3Runner extends BlockJUnit4ClassRunner { /** * Socket timeout for HTTP connections to the grid hub. The connection is - * closed after 15 minutes of inactivity to avoid builds hanging for up to + * closed after 30 minutes of inactivity to avoid builds hanging for up to * three hours per connection if the test client crashes/hangs. */ - private static final int SOCKET_TIMEOUT = 15 * 60 * 1000; + private static final int SOCKET_TIMEOUT = 30 * 60 * 1000; /** * This is the total limit of actual JUnit test instances run in parallel -- 2.39.5