Skip to content

Commit 4b0b97f

Browse files
committed
Give remote-test-client a longer timeout
1 parent 7d97c59 commit 4b0b97f

File tree

1 file changed

+1
-1
lines changed
  • src/tools/remote-test-client/src

1 file changed

+1
-1
lines changed

src/tools/remote-test-client/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ fn spawn_emulator(target: &str, server: &Path, tmpdir: &Path, rootfs: Option<Pat
7171

7272
// Wait for the emulator to come online
7373
loop {
74-
let dur = Duration::from_millis(100);
74+
let dur = Duration::from_millis(2000);
7575
if let Ok(mut client) = TcpStream::connect(&device_address) {
7676
t!(client.set_read_timeout(Some(dur)));
7777
t!(client.set_write_timeout(Some(dur)));

0 commit comments

Comments
 (0)