Skip to content

Commit

Permalink
Optimize wait timeout in broadcastjob e2e case (#587)
Browse files Browse the repository at this point in the history
Signed-off-by: FillZpp <[email protected]>
  • Loading branch information
FillZpp committed Apr 8, 2021
1 parent 94c9e26 commit 9460898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/apps/broadcastjob.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ var _ = SIGDescribe("BroadcastJob", func() {
job, err = tester.GetBroadcastJob(job.Name)
gomega.Expect(err).NotTo(gomega.HaveOccurred())
return job.Status.Succeeded
}, 3*time.Second, time.Second).Should(gomega.Equal(int32(len(nodes))))
}, 30*time.Second, time.Second).Should(gomega.Equal(int32(len(nodes))))
})
})
})

0 comments on commit 9460898

Please sign in to comment.