Skip to content

Commit

Permalink
roachtest/cdc: enable runCDCBackfillRollingRestart on nightlies
Browse files Browse the repository at this point in the history
This patch adds runCDCBackfillRollingRestart as a roachtest running on nightlies.

Epic: None
Resolves: None
  • Loading branch information
wenyihu6 committed May 9, 2024
1 parent c6d1392 commit d1836d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/cmd/roachtest/tests/cdc.go
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@ func runCDCBank(ctx context.Context, t test.Test, c cluster.Cluster) {
func runCDCBackfillRollingRestart(ctx context.Context, t test.Test, c cluster.Cluster) {
const rowCount, splitCount = 1000000, 500
startOpts := option.DefaultStartOpts()
ips, err := c.InternalIP(ctx, t.L(), c.Node(1))
ips, err := c.ExternalIP(ctx, t.L(), c.Node(1))
sinkURL := fmt.Sprintf("https://%s:9707", ips[0])
sink := &http.Client{Transport: &http.Transport{TLSClientConfig: &tls.Config{InsecureSkipVerify: true}}}
if err != nil {
Expand Down Expand Up @@ -1290,7 +1290,7 @@ func registerCDC(r registry.Registry) {
Owner: registry.OwnerCDC,
Cluster: r.MakeClusterSpec(5),
RequiresLicense: true,
CompatibleClouds: registry.OnlyLocal,
CompatibleClouds: registry.AllExceptAWS,
Suites: registry.Suites(registry.Nightly),
Timeout: time.Minute * 15,
Run: func(ctx context.Context, t test.Test, c cluster.Cluster) {
Expand Down

0 comments on commit d1836d1

Please sign in to comment.