Browse Source

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>
Gyuho Lee 7 years ago
parent
commit
e9d5c67b89
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/functional-tester/tester/failure.go

+ 1 - 1
tools/functional-tester/tester/failure.go

@@ -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++ {