Skip to content

Commit 3bc020b

Browse files
backup: deflake TestBackupRestoreSystemTables (#170194)
backup: deflake TestBackupRestoreSystemTables
2 parents a67e198 + 65b9163 commit 3bc020b

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

pkg/backup/backup_test.go

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,15 @@ func TestBackupRestoreSystemTables(t *testing.T) {
10911091

10921092
const numAccounts = 0
10931093
ctx := context.Background()
1094-
_, sqlDB, _, cleanupFn := backupRestoreTestSetup(t, multiNode, numAccounts, InitManualReplication)
1094+
// Note (kev-cao): DRPC is currently flaky on this test, disabling while it is
1095+
// investigated.
1096+
_, sqlDB, _, cleanupFn := backupRestoreTestSetupWithParams(
1097+
t, multiNode, numAccounts, InitManualReplication, base.TestClusterArgs{
1098+
ServerArgs: base.TestServerArgs{
1099+
DefaultDRPCOption: base.TestDRPCDisabled,
1100+
},
1101+
},
1102+
)
10951103
conn := sqlDB.DB.(*gosql.DB)
10961104
defer cleanupFn()
10971105

0 commit comments

Comments
 (0)