Skip to content

Commit

Permalink
e2e:extend the wating time of CheckManualPauseTiDB process (#760)
Browse files Browse the repository at this point in the history
  • Loading branch information
sre-bot authored and weekface committed Aug 14, 2019
1 parent f74cebd commit ceaf890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -2707,7 +2707,7 @@ func (oa *operatorActions) CheckManualPauseTiDB(info *TidbClusterConfig) error {
}

// wait for the tidb statefulset is upgrade to the protect one
if err = wait.Poll(DefaultPollInterval, DefaultPollTimeout, fn); err != nil {
if err = wait.Poll(DefaultPollInterval, 30*time.Minute, fn); err != nil {
return fmt.Errorf("fail to upgrade to annotation TiDB pod : %v", err)
}

Expand Down

0 comments on commit ceaf890

Please sign in to comment.