Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion go/internal/ftwdbshadow/beta_unix_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading