Enlarge E2E poll timeout to 300s.

Signed-off-by: RainbowMango <qdurenhongcai@gmail.com>
This commit is contained in:
RainbowMango 2021-07-05 11:03:51 +08:00
parent bdd98407f7
commit 8cfea7e187
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ const (
// pollInterval defines the interval time for a poll operation.
pollInterval = 5 * time.Second
// pollTimeout defines the time after which the poll operation times out.
pollTimeout = 60 * time.Second
pollTimeout = 300 * time.Second
// MinimumCluster represents the minimum number of member clusters to run E2E test.
MinimumCluster = 2