From b4ef66a3e064b0bbdeddefd70de8796cba5072ad Mon Sep 17 00:00:00 2001 From: Leonid Ryzhyk Date: Thu, 2 Jul 2026 17:55:58 -0400 Subject: [PATCH] [adapters] Increase suspend_barrier test timeout to 100s Increasing a timeout is usually not the right fix, but I was able to reproduce locally that under heavy load commit time increases from 1s to 6s. It's not impossible that it reaches 10s on the CI machine. Signed-off-by: Leonid Ryzhyk --- crates/adapters/src/controller/test.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/adapters/src/controller/test.rs b/crates/adapters/src/controller/test.rs index 8663c9e5705..6f2e34368a9 100644 --- a/crates/adapters/src/controller/test.rs +++ b/crates/adapters/src/controller/test.rs @@ -2062,7 +2062,7 @@ fn suspend_barrier() { // Suspend should now succeed, because we crossed the barrier. receiver - .recv_timeout(Duration::from_millis(10000)) + .recv_timeout(Duration::from_millis(100000)) .unwrap() .unwrap(); assert_bounded_suspend_steps(&controller, suspend_request_step); @@ -2113,7 +2113,7 @@ fn suspend_barrier() { // Suspend should now succeed, because we crossed the barrier. receiver - .recv_timeout(Duration::from_millis(10000)) + .recv_timeout(Duration::from_millis(100000)) .unwrap() .unwrap(); } @@ -2238,7 +2238,7 @@ fn suspend_multiple_barriers(n_inputs: usize) { // Suspend should now succeed, because we crossed the barrier. receiver - .recv_timeout(Duration::from_millis(10000)) + .recv_timeout(Duration::from_millis(100000)) .unwrap() .unwrap(); assert_bounded_suspend_steps(&controller, suspend_request_step);