Skip to content

Commit c19a50d

Browse files
authored
Merge pull request #153707 from cockroachdb/blathers/backport-release-24.3-153680
release-24.3: roachtest: increase the verbosity of runMultiStoreRemove
2 parents a099c3b + 519e2f2 commit c19a50d

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
@@ -55,6 +55,12 @@ func runMultiStoreRemove(ctx context.Context, t test.Test, c cluster.Cluster) {
5555
startSettings := install.MakeClusterSettings()
5656
// Speed up the replicate queue.
5757
startSettings.Env = append(startSettings.Env, "COCKROACH_SCAN_INTERVAL=30s")
58+
59+
// Increase the verbosity of this test to help debug future failures.
60+
startOpts.RoachprodOpts.ExtraArgs = append(startOpts.RoachprodOpts.ExtraArgs,
61+
"--vmodule=*=1,raft=3",
62+
)
63+
5864
c.Start(ctx, t.L(), startOpts, startSettings, c.Range(1, 3))
5965

6066
// Confirm that there are 6 stores live.

0 commit comments

Comments
 (0)