We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8e5f6d commit 98ad3dcCopy full SHA for 98ad3dc
data-pipeline/src/agent_info/fetcher.rs
@@ -332,7 +332,7 @@ mod tests {
332
333
// Wait for first fetch
334
while mock_v1.hits_async().await == 0 {
335
- tokio::time::sleep(Duration::from_millis(10)).await;
+ tokio::time::sleep(Duration::from_millis(100)).await;
336
}
337
let version_1 = info.load().as_ref().unwrap().info.version.clone().unwrap();
338
assert_eq!(version_1, "1");
@@ -351,7 +351,7 @@ mod tests {
351
352
// Wait for second fetch
353
while mock_v2.hits_async().await == 0 {
354
355
356
357
let version_2 = info.load().as_ref().unwrap().info.version.clone().unwrap();
0 commit comments