diff --git a/pkg/kv/kvserver/client_protectedts_test.go b/pkg/kv/kvserver/client_protectedts_test.go index a76965347732..2d30e2e1be71 100644 --- a/pkg/kv/kvserver/client_protectedts_test.go +++ b/pkg/kv/kvserver/client_protectedts_test.go @@ -47,7 +47,6 @@ import ( func TestProtectedTimestamps(t *testing.T) { defer leaktest.AfterTest(t)() defer log.Scope(t).Close(t) - skip.WithIssue(t, 93497, "flaky test") ctx := context.Background() // This test is too slow to run with race. @@ -59,7 +58,7 @@ func TestProtectedTimestamps(t *testing.T) { DisableGCQueue: true, DisableLastProcessedCheck: true, } - tc := testcluster.StartTestCluster(t, 3, args) + tc := testcluster.StartTestCluster(t, 1, args) defer tc.Stopper().Stop(ctx) s0 := tc.Server(0) @@ -73,7 +72,7 @@ func TestProtectedTimestamps(t *testing.T) { _, err = conn.Exec("SET CLUSTER SETTING kv.closed_timestamp.target_duration = '100ms'") // speeds up the test require.NoError(t, err) - const tableRangeMaxBytes = 1 << 18 + const tableRangeMaxBytes = 64 << 20 _, err = conn.Exec("ALTER TABLE foo CONFIGURE ZONE USING "+ "gc.ttlseconds = 1, range_max_bytes = $1, range_min_bytes = 1<<10;", tableRangeMaxBytes) require.NoError(t, err)