Skip to content

Commit

Permalink
roachtest: opt sysbench out of backup schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
tbg committed Dec 23, 2024
1 parent ac3c5f2 commit e3d6445
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/cmd/roachtest/tests/sysbench.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ func runSysbench(ctx context.Context, t test.Test, c cluster.Cluster, opts sysbe
}
} else {
t.Status("installing cockroach")
c.Start(ctx, t.L(), option.DefaultStartOpts(), install.MakeClusterSettings(), c.CRDBNodes())
startOpts := option.DefaultStartOpts()
startOpts.RoachprodOpts.ScheduleBackups = false
c.Start(ctx, t.L(), startOpts, install.MakeClusterSettings(), c.CRDBNodes())
if len(c.CRDBNodes()) >= 3 {
err := roachtestutil.WaitFor3XReplication(ctx, t.L(), c.Conn(ctx, t.L(), 1))
require.NoError(t, err)
Expand Down

0 comments on commit e3d6445

Please sign in to comment.