Fix problem causing tasks to timeout. (#76028)

This is because the command was actually collecting logs continuously
from the device. Additionally idevicesyslog does not have a reboot
option.

Bug: https://github.com/flutter/flutter/issues/76027
This commit is contained in:
godofredoc 2021-02-14 17:28:27 -08:00 committed by GitHub
parent ce318b7b53
commit 4597b51cbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -793,7 +793,7 @@ class IosDevice extends Device {
@override @override
Future<void> reboot() { Future<void> reboot() {
return Process.run('idevicesyslog', <String>['reboot', '-u', deviceId]); return Process.run('idevicediagnostics', <String>['restart', '-u', deviceId]);
} }
} }