You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1146,7 +1150,11 @@ function resolveRequestTimeoutHint(params: {
1146
1150
return'Retry with --debug and verify the remote daemon URL, auth token, and remote host logs.';
1147
1151
}
1148
1152
if(!resetDaemon){
1149
-
return`Retry with --debug and check daemon diagnostics logs. The timed-out ${command??'request'} request was canceled and iOS runner work was aborted when detected; the daemon was kept alive so the session can still be closed or inspected.`;
1153
+
constiosPrepareHint=
1154
+
command===PUBLIC_COMMANDS.snapshot
1155
+
? ' If this was the first iOS snapshot on the device, run agent-device prepare ios-runner --platform ios before snapshot/test so runner startup is handled explicitly.'
1156
+
: '';
1157
+
return`Retry with --debug and check daemon diagnostics logs. The timed-out ${command??'request'} request was canceled and iOS runner work was aborted when detected; the daemon was kept alive so the session can still be closed or inspected.${iosPrepareHint}`;
1150
1158
}
1151
1159
return'Retry with --debug and check daemon diagnostics logs. Timed-out iOS runner xcodebuild processes were terminated when detected.';
0 commit comments