Skip to content

Commit 31bbe73

Browse files
kvserver: disable DRPC for TestReplicateQueueRebalanceMultiStore test
TestReplicateQueueRebalanceMultiStore test is currently flaky. Failures have been observed with both DRPC enabled and disabled. To reduce noise, DRPC is temporarily disabled for this test. Informs: #156293 Epic: None Release note: None
1 parent 2b759bf commit 31bbe73

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkg/kv/kvserver/replicate_queue_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,10 @@ func TestReplicateQueueRebalanceMultiStore(t *testing.T) {
230230
}
231231
// Set up a test cluster with multiple stores per node if needed.
232232
args := base.TestClusterArgs{
233-
ReplicationMode: base.ReplicationAuto,
233+
ReplicationMode: base.ReplicationAuto,
234+
ServerArgs: base.TestServerArgs{
235+
DefaultDRPCOption: base.TestDRPCDisabled,
236+
},
234237
ServerArgsPerNode: map[int]base.TestServerArgs{},
235238
}
236239
for i := 0; i < testCase.nodes; i++ {

0 commit comments

Comments
 (0)