Getting ~5-6 mbs

This commit is contained in:
Igor Katson 2024-05-01 22:49:44 +01:00
parent f3a4e99bb6
commit ce7c7a3f89

View file

@ -42,7 +42,7 @@ fn random_duration() -> Duration {
// std::thread::sleep(sl)
//
let micros = 340f64 + sl * 200.;
let micros = micros.max(0.001) * 2.;
let micros = micros.max(0.001) * 4.;
Duration::from_micros(micros as u64)
}