Skip to content

Commit

Permalink
Merge 15a2dbb into blathers/backport-release-23.2-124053
Browse files Browse the repository at this point in the history
  • Loading branch information
blathers-crl[bot] committed May 13, 2024
2 parents 1c43c0e + 15a2dbb commit 94c541a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/cmd/roachtest/tests/sequelize.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/cmd/roachtest/cluster"
"github.com/cockroachdb/cockroach/pkg/cmd/roachtest/option"
"github.com/cockroachdb/cockroach/pkg/cmd/roachtest/registry"
"github.com/cockroachdb/cockroach/pkg/cmd/roachtest/roachtestutil"
"github.com/cockroachdb/cockroach/pkg/cmd/roachtest/test"
"github.com/cockroachdb/cockroach/pkg/roachprod/install"
)
Expand All @@ -38,7 +39,9 @@ func registerSequelize(r registry.Registry) {
}
node := c.Node(1)
t.Status("setting up cockroach")
c.Start(ctx, t.L(), option.NewStartOpts(sqlClientsInMemoryDB), install.MakeClusterSettings(), c.All())
startOpts := option.NewStartOpts(sqlClientsInMemoryDB)
roachtestutil.SetDefaultSQLPort(c, &startOpts.RoachprodOpts)
c.Start(ctx, t.L(), startOpts, install.MakeClusterSettings(install.SecureOption(false)), c.All())

version, err := fetchCockroachVersion(ctx, t.L(), c, node[0])
if err != nil {
Expand Down

0 comments on commit 94c541a

Please sign in to comment.