From 496534cc018a99a89f9e32f8035a43dca5fd313f Mon Sep 17 00:00:00 2001 From: Sarah Zakarias Date: Thu, 7 Dec 2017 18:13:36 +0100 Subject: [PATCH] Revert "Increase connection timeout" (#13418) --- dev/devicelab/lib/framework/runner.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/devicelab/lib/framework/runner.dart b/dev/devicelab/lib/framework/runner.dart index ed488c677a1..91299323d72 100644 --- a/dev/devicelab/lib/framework/runner.dart +++ b/dev/devicelab/lib/framework/runner.dart @@ -105,7 +105,7 @@ Future _connectToRunnerIsolate(int vmServicePort) async { throw 'not ready yet'; return isolate; } catch (error) { - const Duration connectionTimeout = const Duration(seconds: 4); + const Duration connectionTimeout = const Duration(seconds: 2); if (new DateTime.now().difference(started) > connectionTimeout) { throw new TimeoutException( 'Failed to connect to the task runner process',