Skip to content

Commit 2222a5e

Browse files
committed
TEST
1 parent c96b645 commit 2222a5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/cloud/services/network/vpc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ func (s *Service) deleteVPCEndpoints() error {
277277
}
278278

279279
// Get all existing endpoints.
280-
endpoints, err := s.describeVPCEndpoints(filter.EC2.Cluster(s.scope.Name()))
280+
endpoints, err := s.describeVPCEndpoints(filter.EC2.ClusterOwned(s.scope.Name()))
281281
if err != nil {
282282
return errors.Wrap(err, "failed to describe vpc endpoints")
283283
}

test/e2e/shared/suite.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ func Node1BeforeSuite(e2eCtx *E2EContext) []byte {
145145
success = false
146146
}
147147
return success
148-
}, 30*time.Minute, 15*time.Second).Should(BeTrue(), "Should've eventually succeeded creating an AWS CloudFormation stack")
148+
}, 10*time.Minute, 5*time.Second).Should(BeTrue(), "Should've eventually succeeded creating an AWS CloudFormation stack")
149149
}
150150

151151
ensureStackTags(e2eCtx.AWSSession, bootstrapTemplate.Spec.StackName, bootstrapTags)

0 commit comments

Comments
 (0)