@@ -1504,6 +1504,7 @@ func TestReceiveSnapshotLogging(t *testing.T) {
1504
1504
1505
1505
tc := testcluster .StartTestCluster (t , 3 , base.TestClusterArgs {
1506
1506
ServerArgs : base.TestServerArgs {
1507
+ DefaultDRPCOption : base .TestDRPCDisabled ,
1507
1508
Knobs : base.TestingKnobs {
1508
1509
Store : & kvserver.StoreTestingKnobs {
1509
1510
DisableRaftSnapshotQueue : true ,
@@ -5036,7 +5037,10 @@ func TestDefaultConnectionDisruptionDoesNotInterfereWithSystemTraffic(t *testing
5036
5037
base.TestClusterArgs {
5037
5038
ReplicationMode : base .ReplicationManual ,
5038
5039
ReusableListenerReg : lisReg ,
5039
- ServerArgsPerNode : stickyServerArgs ,
5040
+ ServerArgs : base.TestServerArgs {
5041
+ DefaultDRPCOption : base .TestDRPCDisabled ,
5042
+ },
5043
+ ServerArgsPerNode : stickyServerArgs ,
5040
5044
})
5041
5045
defer tc .Stopper ().Stop (ctx )
5042
5046
// Make a key that's in the user data space.
@@ -6277,7 +6281,8 @@ func TestRaftPreVote(t *testing.T) {
6277
6281
tc := testcluster .StartTestCluster (t , 3 , base.TestClusterArgs {
6278
6282
ReplicationMode : base .ReplicationManual ,
6279
6283
ServerArgs : base.TestServerArgs {
6280
- Settings : st ,
6284
+ DefaultDRPCOption : base .TestDRPCDisabled ,
6285
+ Settings : st ,
6281
6286
RaftConfig : base.RaftConfig {
6282
6287
RaftEnableCheckQuorum : true ,
6283
6288
RaftTickInterval : 200 * time .Millisecond , // speed up test
0 commit comments