From 9bf93008b742347e0c2b0738a2919ffd8b77fc75 Mon Sep 17 00:00:00 2001 From: Fredrik Ahlgren Date: Mon, 7 Sep 2026 22:46:15 +0200 Subject: [PATCH] test(ftwdb): match the live sidecar I/O budget --- go/internal/ftwdbshadow/beta_unix_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/go/internal/ftwdbshadow/beta_unix_test.go b/go/internal/ftwdbshadow/beta_unix_test.go index 633daea0..65ff0fbb 100644 --- a/go/internal/ftwdbshadow/beta_unix_test.go +++ b/go/internal/ftwdbshadow/beta_unix_test.go @@ -27,7 +27,9 @@ func runTestBeta(t *testing.T, st *state.Store, socket string) *Beta { id := mustID(t, "00112233445566778899aabbccddeeff") go func() { defer close(b.done) - b.run(ctx, ClientConfig{SocketPath: socket, SourceID: id, NodeID: "test", ClientVersion: "test", IOTimeout: 100 * time.Millisecond}, "test-site", 20*time.Millisecond) + // Keep Start's I/O budget for real Rust fsync and CI scheduling delays. + // Only the polling interval is shortened; failures must still surface. + b.run(ctx, ClientConfig{SocketPath: socket, SourceID: id, NodeID: "test", ClientVersion: "test", IOTimeout: 2 * time.Second}, "test-site", 20*time.Millisecond) }() t.Cleanup(b.Close) return b