}
const FILE_CONF: &str = "config.ron";
+const PULL_PERIOD: time::Duration = time::Duration::from_secs(60); // 1 min.
fn main() -> Result<()> {
println!("I need a RTX 3080 right now :)");
let client = reqwest::blocking::Client::new();
loop {
+ let time_beginning_loop = time::Instant::now();
println!("Request: {}", url);
match client.get(&url).send() {
println!("Error during request: {:?}", error)
}
- thread::sleep(time::Duration::from_secs(60)); // 1 min.
+ let elapsed = time::Instant::now() - time_beginning_loop;
+
+ if elapsed < PULL_PERIOD {
+ let to_wait = PULL_PERIOD - elapsed;
+ thread::sleep(to_wait);
+ }
}
}