Skip to content

Commit 08d1e04

Browse files
craig[bot]Dev-Kyle
andcommitted
Merge #151574
151574: roachtest: temporarily disable network partition mutator r=DarrylWong a=Dev-Kyle The current methodology for ensuring failure injections don't intersect is a little hacky, so this change temporarily disables network partition's until this is better handled. Epic: none Release note: none Co-authored-by: Kyle <[email protected]>
2 parents e390312 + 0cda1d6 commit 08d1e04

File tree

1 file changed

+3
-1
lines changed
  • pkg/cmd/roachtest/roachtestutil/mixedversion

1 file changed

+3
-1
lines changed

pkg/cmd/roachtest/roachtestutil/mixedversion/mutators.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,9 @@ type networkPartitionMutator struct{}
501501
func (m networkPartitionMutator) Name() string { return failures.IPTablesNetworkPartitionName }
502502

503503
func (m networkPartitionMutator) Probability() float64 {
504-
return 0.3
504+
// Temporarily set to 0 while we investigate a better way to handle
505+
// intersecting failures.
506+
return 0
505507
}
506508

507509
func (m networkPartitionMutator) Generate(

0 commit comments

Comments
 (0)