Skip to content

Commit deb903b

Browse files
kvserver: skip TestAdminScatterWithDrainingNodes test in DRPC mode
`TestAdminScatterWithDrainingNodes` is failing at random when DRPC is enabled. The issue is specific to DRPC and the failure is reproducible once every 25 runs. The issue is not reproducible with cluster setting `SET CLUSTER SETTING sql.stats.flush.enabled=false` set to false to turn off stats flush. Re-enable the test once the underlying issue is resolved. Fixes: #156372 Epic: None Release note: None
1 parent d534c36 commit deb903b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/kv/kvserver/scatter_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ func TestAdminScatterWithDrainingNodes(t *testing.T) {
4545
const drainingNodeID = drainingServerIdx + 1
4646
tc := testcluster.StartTestCluster(
4747
t, 2, base.TestClusterArgs{
48+
ServerArgs: base.TestServerArgs{
49+
// TODO(server): test is timing out when DRPC is enabled.
50+
// Investigate and re-enable once the issue is resolved.
51+
DefaultDRPCOption: base.TestDRPCDisabled,
52+
},
4853
ReplicationMode: base.ReplicationManual,
4954
},
5055
)

0 commit comments

Comments
 (0)