Skip to content

Commit

Permalink
OCM-12937 | fix: add the wait time for gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
yingzhanredhat committed Dec 5, 2024
1 parent dec28d7 commit 4e69671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/test/vpc_client/nat_gateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func (vpc *VPC) DeleteVPCNatGateways(vpcID string) error {
wg.Add(1)
go func(gateWayID string) {
defer wg.Done()
_, err = vpc.AWSClient.DeleteNatGateway(gateWayID, 120)
_, err = vpc.AWSClient.DeleteNatGateway(gateWayID, 180)
if err != nil {
delERR = err
}
Expand Down

0 comments on commit 4e69671

Please sign in to comment.