File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
pkg/cmd/roachtest/roachtestutil/mixedversion Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -779,9 +779,12 @@ func quoteVersionForPresentation(v string) string {
779779// we should change the default and add an API for tests to opt-out of
780780// the default scheduled backup if necessary.
781781func startOpts (opts ... option.StartStopOption ) option.StartOpts {
782- return option .NewStartOpts (
782+ startOpts := option .NewStartOpts (
783783 startStopOpts (opts ... )... ,
784784 )
785+ // Enable verbose logging for auto_upgrade to help debug upgrade-related issues.
786+ startOpts .RoachprodOpts .ExtraArgs = append (startOpts .RoachprodOpts .ExtraArgs , "--vmodule=auto_upgrade=2" )
787+ return startOpts
785788}
786789
787790// startStopOpts does the same as `startOpts` but returns StartStopOptions
You can’t perform that action at this time.
0 commit comments