From 6bbd0abf0fdf05b672d56b9d676139324839f2ec Mon Sep 17 00:00:00 2001 From: Tonis Tiigi Date: Fri, 6 Mar 2026 15:06:06 -0800 Subject: [PATCH] store: increase test timeouts for CI reliability Bump timing thresholds in TestNodeLocking to avoid flaky failures on slow CI runners (e.g. Windows). Signed-off-by: Tonis Tiigi --- store/store_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/store/store_test.go b/store/store_test.go index a59ea8e17..fafadcadb 100644 --- a/store/store_test.go +++ b/store/store_test.go @@ -51,14 +51,14 @@ func TestNodeLocking(t *testing.T) { }() select { - case <-time.After(100 * time.Millisecond): + case <-time.After(200 * time.Millisecond): case <-ready: require.Fail(t, "transaction should have waited") } release() select { - case <-time.After(200 * time.Millisecond): + case <-time.After(5 * time.Second): require.Fail(t, "transaction should have completed") case <-ready: }