We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f5d951 commit b004d92Copy full SHA for b004d92
miri-script/src/commands.rs
@@ -102,8 +102,8 @@ impl Command {
102
cmd.stdout(process::Stdio::null());
103
cmd.stderr(process::Stdio::null());
104
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));
+ // Give it some time so hopefully the port is open. (100ms was not enough.)
+ thread::sleep(time::Duration::from_millis(200));
107
108
// Create a wrapper that stops it on drop.
109
struct Josh(process::Child);
0 commit comments