Skip to content

Commit 9e8e207

Browse files
committed
roachtest: increase the verbosity of runMultiStoreRemove
Recent failures in runMultiStoreRemove seems to indicate a potential race between follower replica removal and leader fortification. References: #153517 Release note: None
1 parent 8ac8fbb commit 9e8e207

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)