Skip to content

Commit

Permalink
increasing timeout for few integration test (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
yash97 authored Oct 23, 2024
1 parent 242672e commit edffd4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/framework/utils/poll.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const (
PollTimeout = 30 * time.Second
// ResourceCreationTimeout is the number of seconds till the controller waits
// for the resource creation to complete
ResourceCreationTimeout = 120 * time.Second
ResourceCreationTimeout = 180 * time.Second
// Windows Container Images are much larger in size and pulling them the first
// time takes much longer, so have higher timeout for Windows Pod to be Ready
WindowsPodsCreationTimeout = 240 * time.Second
Expand Down
2 changes: 1 addition & 1 deletion test/integration/scale/pod_scale_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ var _ = Describe("Security group per pod scale test", func() {
duration := time.Since(start)
verify.VerifyNetworkingOfAllPodUsingENI(namespace, sgpLabelKey, sgpLabelValue,
securityGroups)
Expect(duration.Minutes()).To(BeNumerically("<", 5.0))
Expect(duration.Minutes()).To(BeNumerically("<", 5.5))
})
})
})
Expand Down

0 comments on commit edffd4c

Please sign in to comment.