Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: increase next pending interval
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberb committed Apr 15, 2024
1 parent 3b58159 commit b2acef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/topos-tce-broadcast/src/task_manager/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl TaskManager {
}

pub async fn run(mut self, shutdown_receiver: CancellationToken) {
let mut interval = tokio::time::interval(Duration::from_secs(1));
let mut interval = tokio::time::interval(Duration::from_millis(100));

loop {
tokio::select! {
Expand Down

0 comments on commit b2acef1

Please sign in to comment.