diff --git a/trace-utils/src/send_data/retry_strategy.rs b/trace-utils/src/send_data/retry_strategy.rs index e61c292ae..5bb1305ca 100644 --- a/trace-utils/src/send_data/retry_strategy.rs +++ b/trace-utils/src/send_data/retry_strategy.rs @@ -114,7 +114,10 @@ mod tests { use super::*; use tokio::time::Instant; - const RETRY_STRATEGY_TIME_TOLERANCE_MS: u64 = 01; + // This tolerance is on the higher side to account for github's runners not having consistent + // performance. It shouldn't impact the quality of the tests since the most important aspect + // of the retry logic is we wait a minimum amount of time. + const RETRY_STRATEGY_TIME_TOLERANCE_MS: u64 = 100; #[cfg_attr(miri, ignore)] #[tokio::test]