summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-07-30 19:57:14 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-07-30 19:57:14 +0300
commit75163a27fb894881bea3be6b14ef75722c44a8e4 (patch)
treed6b665e0ae5ad22e2590b8f479c82839f4e00cd7 /src
parent48296403cf7d911c73dcff9dc49082931c61db63 (diff)
feat: adjust schedulemain
Diffstat (limited to 'src')
-rw-r--r--src/weather_poller.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/weather_poller.rs b/src/weather_poller.rs
index 76f3fda..8383d55 100644
--- a/src/weather_poller.rs
+++ b/src/weather_poller.rs
@@ -354,7 +354,7 @@ impl WeatherScheduler {
}
// Wait for 1 hour before next check
- sleep(Duration::from_secs(3600)).await;
+ sleep(Duration::from_secs(60 * 60)).await;
}
}
}