Skip to content

Commit

Permalink
Merge pull request kubernetes#106508 from aojea/flake_events
Browse files Browse the repository at this point in the history
bump e2e period to wait for events
  • Loading branch information
k8s-ci-robot committed Nov 18, 2021
2 parents 321e22d + d32b437 commit ec0d3de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/node/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ var _ = SIGDescribe("Events", func() {
var events *v1.EventList
// Check for scheduler event about the pod.
ginkgo.By("checking for scheduler event about the pod")
framework.ExpectNoError(wait.Poll(time.Second*2, time.Second*60, func() (bool, error) {
framework.ExpectNoError(wait.Poll(framework.Poll, 5*time.Minute, func() (bool, error) {
selector := fields.Set{
"involvedObject.kind": "Pod",
"involvedObject.uid": string(podWithUID.UID),
Expand All @@ -115,7 +115,7 @@ var _ = SIGDescribe("Events", func() {
}))
// Check for kubelet event about the pod.
ginkgo.By("checking for kubelet event about the pod")
framework.ExpectNoError(wait.Poll(time.Second*2, time.Second*60, func() (bool, error) {
framework.ExpectNoError(wait.Poll(framework.Poll, 5*time.Minute, func() (bool, error) {
selector := fields.Set{
"involvedObject.uid": string(podWithUID.UID),
"involvedObject.kind": "Pod",
Expand Down

0 comments on commit ec0d3de

Please sign in to comment.