Skip to content

Commit

Permalink
backupccl: disable tenants in datadriven test
Browse files Browse the repository at this point in the history
In cockroachdb#88271 we enabled most DD tests to run as tenants
but we saw an uptick in timeouts on CI. This change disables
these tests from being run as tenants while we dig into the
timeouts.

Release note: None
  • Loading branch information
adityamaru committed Oct 20, 2022
1 parent 1093ee1 commit f86a967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ccl/backupccl/datadriven_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func (d *datadrivenTestState) addServer(t *testing.T, cfg serverCfg) error {
var cleanup func()
params := base.TestClusterArgs{}
params.ServerArgs.ExternalIODirConfig = cfg.ioConf
params.ServerArgs.DisableDefaultTestTenant = cfg.disableTenant
params.ServerArgs.DisableDefaultTestTenant = true
params.ServerArgs.Knobs = base.TestingKnobs{
JobsTestingKnobs: jobs.NewTestingKnobsWithShortIntervals(),
}
Expand Down

0 comments on commit f86a967

Please sign in to comment.