We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01a5e90 commit 575f6e3Copy full SHA for 575f6e3
src/task/subscription.rs
@@ -36,6 +36,7 @@ impl TaskSubscription {
36
async fn continuous_fetch(&mut self, fetcher: Box<dyn FetcherTrait>) {
37
let mut interval = tokio::time::interval(self.interval);
38
interval.set_missed_tick_behavior(MissedTickBehavior::Delay);
39
+ interval.reset_immediately();
40
41
let mut last_status = Status::empty();
42
0 commit comments