Unverified Commit e5131fa3 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Increase device discovery timeout in devicelab health check (#67337)

parent 582c67a1
...@@ -636,7 +636,7 @@ class IosDeviceDiscovery implements DeviceDiscovery { ...@@ -636,7 +636,7 @@ class IosDeviceDiscovery implements DeviceDiscovery {
Future<List<String>> discoverDevices() async { Future<List<String>> discoverDevices() async {
final List<dynamic> results = json.decode(await eval( final List<dynamic> results = json.decode(await eval(
path.join(flutterDirectory.path, 'bin', 'flutter'), path.join(flutterDirectory.path, 'bin', 'flutter'),
<String>['devices', '--machine', '--suppress-analytics'], <String>['devices', '--machine', '--suppress-analytics', '--timeout', '10'],
)) as List<dynamic>; )) as List<dynamic>;
// [ // [
......
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