Skip to content

Commit

Permalink
metrics_reporter: use 60 secs sync interval (#733)
Browse files Browse the repository at this point in the history
  • Loading branch information
vrmiguel committed Apr 22, 2024
1 parent 0e72abc commit 98a8294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conductor/src/metrics_reporter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub async fn run_metrics_reporter() -> Result<()> {
queue.init().await?;
queue.create(&metrics_events_queue).await?;

let mut sync_interval = interval(Duration::from_secs(5));
let mut sync_interval = interval(Duration::from_secs(60));

loop {
sync_interval.tick().await;
Expand Down

0 comments on commit 98a8294

Please sign in to comment.