functional-tester/tester: reduce retries in slow network

Now configure slow network cases with latency greater than election timeout.

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
release-3.4
Gyuho Lee 2018-04-05 11:07:37 -07:00
parent 3f7f3ab614
commit e9d5c67b89
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ func (f *failureUntilSnapshot) Inject(clus *Cluster) error {
retries := int(snapshotCount) / 1000 * 3
if v, ok := slowCases[f.FailureCase()]; v && ok {
// slow network takes more retries
retries *= 4
retries *= 2
}
for i := 0; i < retries; i++ {