Skip to content

Commit 882b0c2

Browse files
secupclaude
andcommitted
Increase file transfer timeout to 5 minutes for R1/4 testing
R1/4 at 62 bytes/frame needs ~165 frames for 10KB, which takes ~135s on good fading. The old 120s timeout was too short. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e6dd45d commit 882b0c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/cli_simulator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1722,7 +1722,7 @@ class CLISimulator {
17221722
auto now = std::chrono::steady_clock::now();
17231723
auto elapsed = std::chrono::duration_cast<std::chrono::seconds>(now - start).count();
17241724

1725-
if (elapsed >= 120) { // 2 minute timeout for file transfer
1725+
if (elapsed >= 300) { // 5 minute timeout for file transfer (R1/4 needs ~2min for 10KB)
17261726
std::cout << " \033[31m✗ File transfer timeout!\033[0m\n";
17271727
return false;
17281728
}

0 commit comments

Comments
 (0)