Skip to content

Commit

Permalink
Give remote-test-client a longer timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoverbear committed Jul 2, 2024
1 parent 7d97c59 commit 4b0b97f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/remote-test-client/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ fn spawn_emulator(target: &str, server: &Path, tmpdir: &Path, rootfs: Option<Pat

// Wait for the emulator to come online
loop {
let dur = Duration::from_millis(100);
let dur = Duration::from_millis(2000);
if let Ok(mut client) = TcpStream::connect(&device_address) {
t!(client.set_read_timeout(Some(dur)));
t!(client.set_write_timeout(Some(dur)));
Expand Down

0 comments on commit 4b0b97f

Please sign in to comment.