Skip to content

Commit

Permalink
tests/robustness: Disable testing network blackhole until etcd-io#15595
Browse files Browse the repository at this point in the history
… is fixed
  • Loading branch information
serathius committed Mar 31, 2023
1 parent e11a323 commit 77f7cbc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/robustness/failpoints.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ var (
CompactBeforeCommitBatchPanic, CompactAfterCommitBatchPanic,
RaftBeforeLeaderSendPanic,
BlackholePeerNetwork,
DelayPeerNetwork,
// TODO(#15595): Re-enable after issue is fixed
//DelayPeerNetwork,
}
RandomOneNodeClusterFailpoint Failpoint = randomFailpoint{oneNodeClusterFailpoints}
RaftBeforeFollowerSendPanic Failpoint = goPanicFailpoint{"raftBeforeFollowerSend", nil, Follower}
Expand All @@ -79,7 +80,8 @@ var (
RaftAfterSaveSnapPanic Failpoint = goPanicFailpoint{"raftAfterSaveSnap", triggerBlackholeUntilSnapshot, Follower}
RandomSnapshotFailpoint Failpoint = randomFailpoint{[]Failpoint{
RaftBeforeApplySnapPanic, RaftAfterApplySnapPanic, RaftAfterWALReleasePanic, RaftBeforeSaveSnapPanic, RaftAfterSaveSnapPanic,
BlackholeUntilSnapshot,
// TODO(#15595): Re-enable after issue is fixed
//BlackholeUntilSnapshot,
}}
)

Expand Down

0 comments on commit 77f7cbc

Please sign in to comment.