Skip to content

Commit

Permalink
clean up warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bunnie committed Nov 5, 2022
1 parent 601f347 commit 1ca0ef7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/vault/src/prereqs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ pub(crate) fn ntp_updater(time_conn: xous::CID) {
let tt = ticktimer_server::Ticktimer::new().unwrap();
let mut now = SystemTime::now();
let mut force_update = true;
tt.sleep_ms(1000 * 60 * 2); // initial delay of 2 minutes before polling. This gives plenty of time for network to come up.
tt.sleep_ms(1000 * 60 * 2).ok(); // initial delay of 2 minutes before polling. This gives plenty of time for network to come up.
loop {
if force_update || now.elapsed().unwrap().as_secs() > 3600 * 24 { // once a day in real time
// check if we have a network connection. if not, repeat the loop, after a short delay
Expand Down

0 comments on commit 1ca0ef7

Please sign in to comment.