Bump all e2e test timeouts 3x

This commit is contained in:
Igor Katson 2024-03-05 02:00:43 -08:00
parent 25cd3c75cc
commit 56527ae8d7
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5

View file

@ -120,7 +120,7 @@ async fn test_e2e() {
} }
.instrument(error_span!("server", server = i)), .instrument(error_span!("server", server = i)),
); );
futs.push(timeout(Duration::from_secs(10), rx)); futs.push(timeout(Duration::from_secs(30), rx));
} }
let mut peers = Vec::new(); let mut peers = Vec::new();
@ -203,7 +203,7 @@ async fn test_e2e() {
} }
.instrument(error_span!("stats_printer")); .instrument(error_span!("stats_printer"));
let timeout = timeout(Duration::from_secs(60), handle.wait_until_completed()); let timeout = timeout(Duration::from_secs(180), handle.wait_until_completed());
tokio::pin!(stats_printer); tokio::pin!(stats_printer);
tokio::pin!(timeout); tokio::pin!(timeout);
@ -244,7 +244,7 @@ async fn test_e2e() {
info!("re-added handle"); info!("re-added handle");
timeout(Duration::from_secs(10), async { timeout(Duration::from_secs(30), async {
let mut interval = interval(Duration::from_millis(100)); let mut interval = interval(Duration::from_millis(100));
loop { loop {
interval.tick().await; interval.tick().await;