From 8cc347bd7546cd7a9f32061e1d3f5bb3c256c02d Mon Sep 17 00:00:00 2001 From: Nick Travers Date: Fri, 10 Feb 2023 09:32:36 -0800 Subject: [PATCH] roachtest: set range tombstones flag accordingly Fix a bug in the `import-cancellation` roachtest whereby range tombstones are always disabled. Release note: None. --- pkg/cmd/roachtest/tests/import_cancellation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/roachtest/tests/import_cancellation.go b/pkg/cmd/roachtest/tests/import_cancellation.go index 5ac8f3596d3c..f854b144a83b 100644 --- a/pkg/cmd/roachtest/tests/import_cancellation.go +++ b/pkg/cmd/roachtest/tests/import_cancellation.go @@ -36,7 +36,7 @@ func registerImportCancellation(r registry.Registry) { Timeout: 4 * time.Hour, Cluster: r.MakeClusterSpec(6, spec.CPU(32)), Run: func(ctx context.Context, t test.Test, c cluster.Cluster) { - runImportCancellation(ctx, t, c, false) + runImportCancellation(ctx, t, c, rangeTombstones) }, }) }