Skip to content

Commit 9b5d1fc

Browse files
authored
Merge pull request #156087 from msbutler/blathers/backport-release-25.4-155994
release-25.4: roachtest: skip node distribution check in c2c/disconnect
2 parents b120224 + a8f6957 commit 9b5d1fc

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

pkg/cmd/roachtest/tests/cluster_to_cluster.go

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1948,17 +1948,18 @@ func registerClusterReplicationResilience(r registry.Registry) {
19481948
// reconnects the nodes.
19491949
func registerClusterReplicationDisconnect(r registry.Registry) {
19501950
sp := replicationSpec{
1951-
name: "c2c/disconnect",
1952-
srcNodes: 3,
1953-
dstNodes: 3,
1954-
cpus: 4,
1955-
workload: replicateKV{readPercent: 0, initRows: 1000000, maxBlockBytes: 1024, initWithSplitAndScatter: true, tolerateErrors: true},
1956-
timeout: 20 * time.Minute,
1957-
additionalDuration: 10 * time.Minute,
1958-
cutover: 2 * time.Minute,
1959-
maxAcceptedLatency: 12 * time.Minute,
1960-
clouds: registry.OnlyGCE,
1961-
suites: registry.Suites(registry.Nightly),
1951+
name: "c2c/disconnect",
1952+
srcNodes: 3,
1953+
dstNodes: 3,
1954+
cpus: 4,
1955+
workload: replicateKV{readPercent: 0, initRows: 1000000, maxBlockBytes: 1024, initWithSplitAndScatter: true, tolerateErrors: true},
1956+
timeout: 20 * time.Minute,
1957+
additionalDuration: 10 * time.Minute,
1958+
cutover: 2 * time.Minute,
1959+
maxAcceptedLatency: 12 * time.Minute,
1960+
skipNodeDistributionCheck: true,
1961+
clouds: registry.OnlyGCE,
1962+
suites: registry.Suites(registry.Nightly),
19621963
}
19631964
c2cRegisterWrapper(r, sp, func(ctx context.Context, t test.Test, c cluster.Cluster) {
19641965
rd := makeReplicationDriver(t, c, sp)

0 commit comments

Comments
 (0)