From 71e038bed862176cdfaefb9886a6f48a440f1f3a Mon Sep 17 00:00:00 2001 From: Tobias Schottdorf Date: Tue, 4 Dec 2018 15:48:35 +0100 Subject: [PATCH] storage: disable merge queue during TestSplitTriggerRaftSnapshotRace It exposes a bug (likely in range merges), #32784. Release note: None --- pkg/storage/client_split_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/storage/client_split_test.go b/pkg/storage/client_split_test.go index 4a7ac1e6d5e2..1292ea10dd6d 100644 --- a/pkg/storage/client_split_test.go +++ b/pkg/storage/client_split_test.go @@ -517,6 +517,8 @@ func TestSplitTriggerRaftSnapshotRace(t *testing.T) { ctx := context.Background() const numNodes = 3 var args base.TestClusterArgs + // TODO(benesch): remove this while closing #32784. + args.ServerArgs.Knobs.Store = &storage.StoreTestingKnobs{DisableMergeQueue: true} // NB: the merge queue is enabled for additional "chaos". Note that the test // uses three nodes and so there is no replica movement, which would other- // wise tickle Raft snapshots for unrelated reasons.