Skip to content

Commit

Permalink
Merge pull request openshift#22670 from smarterclayton/wait_longer
Browse files Browse the repository at this point in the history
Wait slightly longer to observe version
  • Loading branch information
smarterclayton authored Apr 25, 2019
2 parents 748f35d + 2315db4 commit c0c0569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/upgrade/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ func clusterUpgrade(c configv1client.Interface, version upgrades.VersionContext)
}

var lastCV *configv1.ClusterVersion
if err := wait.PollImmediate(5*time.Second, 2*time.Minute, func() (bool, error) {
if err := wait.PollImmediate(5*time.Second, 5*time.Minute, func() (bool, error) {
cv, err := c.ConfigV1().ClusterVersions().Get("version", metav1.GetOptions{})
if err != nil {
return false, err
Expand Down

0 comments on commit c0c0569

Please sign in to comment.