Skip to content

Commit

Permalink
Increase delay for stats_exporter to send stats (#659)
Browse files Browse the repository at this point in the history
  • Loading branch information
VianneyRuhlmann authored Oct 1, 2024
1 parent dcf22a9 commit 43c5a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data-pipeline/src/stats_exporter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ mod tests {
tokio::time::sleep(BUCKETS_DURATION + Duration::from_secs(1)).await;
// Resume time to sleep while the stats are being sent
tokio::time::resume();
tokio::time::sleep(Duration::from_millis(10)).await;
tokio::time::sleep(Duration::from_millis(100)).await;

mock.assert_async().await;
}
Expand Down

0 comments on commit 43c5a39

Please sign in to comment.