-
Notifications
You must be signed in to change notification settings - Fork 64
Open
Labels
Description
Hi, I was integrating rexpect into a project and found that the sleeps are longer than what we needed. Specifically the sleep in read_until is 100ms, and I found that decreasing this to 5ms sped up some of our tests that are using rexpect.
Line 287 in be7f1ab
| thread::sleep(time::Duration::from_millis(100)); |
Of course I wouldn't suggest everyone using 5ms, so maybe there's room for configurability? For now I have a fork with that small change.