From f86a967b17db87f5ca86da364adc047cca6cab45 Mon Sep 17 00:00:00 2001 From: adityamaru Date: Wed, 19 Oct 2022 21:53:22 -0400 Subject: [PATCH] backupccl: disable tenants in datadriven test In #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 --- pkg/ccl/backupccl/datadriven_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ccl/backupccl/datadriven_test.go b/pkg/ccl/backupccl/datadriven_test.go index d45c769da7e5..ad62853ea7e8 100644 --- a/pkg/ccl/backupccl/datadriven_test.go +++ b/pkg/ccl/backupccl/datadriven_test.go @@ -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(), }