Unverified Commit e38d4802 authored by Sarah Zakarias's avatar Sarah Zakarias Committed by GitHub

Increase connection timeout (#13413)

parent d1e918fa
......@@ -105,7 +105,7 @@ Future<VMIsolateRef> _connectToRunnerIsolate(int vmServicePort) async {
throw 'not ready yet';
return isolate;
} catch (error) {
const Duration connectionTimeout = const Duration(seconds: 2);
const Duration connectionTimeout = const Duration(seconds: 4);
if (new DateTime.now().difference(started) > connectionTimeout) {
throw new TimeoutException(
'Failed to connect to the task runner process',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment