Skip to content

Commit 85309d6

Browse files
committed
roachtest: skip node distribution check in c2c/disconnect
The check flakes during the test and isn't necessary for the test. Informs #155753 Informs #152248 Informs #152248 Release note: none
1 parent 7bc8809 commit 85309d6

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
@@ -2019,17 +2019,18 @@ func registerClusterReplicationResilience(r registry.Registry) {
20192019
// reconnects the nodes.
20202020
func registerClusterReplicationDisconnect(r registry.Registry) {
20212021
sp := replicationSpec{
2022-
name: "c2c/disconnect",
2023-
srcNodes: 3,
2024-
dstNodes: 3,
2025-
cpus: 4,
2026-
workload: replicateKV{readPercent: 0, initRows: 1000000, maxBlockBytes: 1024, initWithSplitAndScatter: true, tolerateErrors: true},
2027-
timeout: 20 * time.Minute,
2028-
additionalDuration: 10 * time.Minute,
2029-
cutover: 2 * time.Minute,
2030-
maxAcceptedLatency: 12 * time.Minute,
2031-
clouds: registry.OnlyGCE,
2032-
suites: registry.Suites(registry.Nightly),
2022+
name: "c2c/disconnect",
2023+
srcNodes: 3,
2024+
dstNodes: 3,
2025+
cpus: 4,
2026+
workload: replicateKV{readPercent: 0, initRows: 1000000, maxBlockBytes: 1024, initWithSplitAndScatter: true, tolerateErrors: true},
2027+
timeout: 20 * time.Minute,
2028+
additionalDuration: 10 * time.Minute,
2029+
cutover: 2 * time.Minute,
2030+
maxAcceptedLatency: 12 * time.Minute,
2031+
skipNodeDistributionCheck: true,
2032+
clouds: registry.OnlyGCE,
2033+
suites: registry.Suites(registry.Nightly),
20332034
}
20342035
c2cRegisterWrapper(r, sp, func(ctx context.Context, t test.Test, c cluster.Cluster) {
20352036
rd := makeReplicationDriver(t, c, sp)

0 commit comments

Comments
 (0)