Skip to content

Commit b004d92

Browse files
committed
give josh more time to start
1 parent 4f5d951 commit b004d92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

miri-script/src/commands.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ impl Command {
102102
cmd.stdout(process::Stdio::null());
103103
cmd.stderr(process::Stdio::null());
104104
let josh = cmd.spawn().context("failed to start josh-proxy, make sure it is installed")?;
105-
// Give it some time so hopefully the port is open. (10ms was not enough.)
106-
thread::sleep(time::Duration::from_millis(100));
105+
// Give it some time so hopefully the port is open. (100ms was not enough.)
106+
thread::sleep(time::Duration::from_millis(200));
107107

108108
// Create a wrapper that stops it on drop.
109109
struct Josh(process::Child);

0 commit comments

Comments
 (0)