Skip to content

Commit 068293d

Browse files
authored
Merge pull request #153705 from cockroachdb/blathers/backport-release-25.2-153680
release-25.2: roachtest: increase the verbosity of runMultiStoreRemove
2 parents 093279a + 30e3d60 commit 068293d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pkg/cmd/roachtest/tests/multi_store_remove.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ func runMultiStoreRemove(ctx context.Context, t test.Test, c cluster.Cluster) {
6060
startSettings := install.MakeClusterSettings()
6161
// Speed up the replicate queue.
6262
startSettings.Env = append(startSettings.Env, "COCKROACH_SCAN_INTERVAL=30s")
63+
64+
// Increase the verbosity of this test to help debug future failures.
65+
startOpts.RoachprodOpts.ExtraArgs = append(startOpts.RoachprodOpts.ExtraArgs,
66+
"--vmodule=*=1,raft=3",
67+
)
68+
6369
c.Start(ctx, t.L(), startOpts, startSettings, c.Range(1, 3))
6470

6571
// Confirm that there are 6 stores live.

0 commit comments

Comments
 (0)