Skip to content

Commit

Permalink
e2e: wait longer for authn operator to come up
Browse files Browse the repository at this point in the history
  • Loading branch information
stlaz committed Apr 21, 2020
1 parent 4d0922f commit 790b6d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/extended/oauth/requestheaders.go
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ func waitForNewOAuthConfig(oc *exutil.CLI, caCerts *x509.CertPool, oauthURL stri
})
o.Expect(err).NotTo(o.HaveOccurred())

err = wait.PollImmediate(time.Second, time.Minute, func() (bool, error) {
err = wait.PollImmediate(time.Second, 5*time.Minute, func() (bool, error) {
authn, err := oc.AdminConfigClient().ConfigV1().ClusterOperators().Get(context.Background(), "authentication", metav1.GetOptions{})
if err != nil {
e2e.Logf("Error getting authentication operator: %v", err)
Expand Down

0 comments on commit 790b6d2

Please sign in to comment.