We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 412e2bd commit 6e387b6Copy full SHA for 6e387b6
pkg/kv/kvserver/client_raft_test.go
@@ -5396,6 +5396,11 @@ func TestProcessSplitAfterRightHandSideHasBeenRemoved(t *testing.T) {
5396
// Newly-started stores (including the "rogue" one) should not GC
5397
// their replicas. We'll turn this back on when needed.
5398
DisableReplicaGCQueue: true,
5399
+ // Some subtests, e.g. (4), expect that n1 catches up on the raft
5400
+ // log after a partition, and runs the split trigger. Disable raft
5401
+ // log truncation to make sure that it doesn't miss the split
5402
+ // trigger by being caught up by a later snapshot. See #154313.
5403
+ DisableRaftLogQueue: true,
5404
TestingProposalFilter: testingProposalFilter,
5405
},
5406
0 commit comments