Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
davidleerh committed Sep 11, 2023
1 parent bb8056c commit 5cc08db
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/verifier/aws/entry_point.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"fmt"
"os"
"strconv"
"time"

awsTools "github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/ec2"
Expand Down Expand Up @@ -170,6 +171,9 @@ func (a *AwsVerifier) ValidateEgress(vei verifier.ValidateEgressInput) *output.O
keyPair: vei.ImportKeyPair,
})

// SET WAIT AFTER EC2 CREATE - DAVID
time.Sleep(10 * time.Minute)

//If securitygroup was created by network-verifier, delete it as part of cleanup
if cleanupSecurityGroup {
defer CleanupSecurityGroup(vei, a)
Expand Down

0 comments on commit 5cc08db

Please sign in to comment.