Skip to content

Commit

Permalink
Increase ssm wait time during e2e test (#8025)
Browse files Browse the repository at this point in the history
Co-authored-by: EKS Distro PR Bot <[email protected]>
  • Loading branch information
d8660091 and eks-distro-pr-bot authored Apr 22, 2024
1 parent 2267f7d commit 7bdba5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/ssm/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var initE2EDirCommand = "mkdir -p /home/e2e/bin && cd /home/e2e"

// WaitForSSMReady waits for the SSM command to be ready.
func WaitForSSMReady(session *session.Session, instanceID string, timeout time.Duration) error {
err := retrier.Retry(10, 20*time.Second, func() error {
err := retrier.Retry(20, 20*time.Second, func() error {
return Run(session, logr.Discard(), instanceID, "ls", timeout)
})
if err != nil {
Expand Down

0 comments on commit 7bdba5b

Please sign in to comment.