Increase connection timeout further (#13415)

This commit is contained in:
Sarah Zakarias 2017-12-07 15:06:57 +01:00 committed by GitHub
parent e38d48021c
commit f40a9398a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -15,8 +15,11 @@ Future<Null> main() async {
final Directory iosDirectory = dir(
'${flutterDirectory.path}/examples/flutter_view/ios',
);
final Stopwatch stopwatch = new Stopwatch()..start();
await inDirectory(iosDirectory, () async {
await exec('pod', <String>['install']);
});
print('pod install executed in ${stopwatch.elapsed}');
await task(createFlutterViewStartupTest());
}

View File

@ -105,7 +105,7 @@ Future<VMIsolateRef> _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: 30);
if (new DateTime.now().difference(started) > connectionTimeout) {
throw new TimeoutException(
'Failed to connect to the task runner process',