Skip to content

Commit 0cda1d6

Browse files
committed
roachtest: temporarily disable network partition mutator
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.
1 parent e390312 commit 0cda1d6

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)