-
Patch
-
Resolution: Unresolved
-
Major
-
None
-
All environments.
When waiting for the CloudFormation stack to delete, the method is calling DescribeStacks without passing in a StackName. This results in a call that will get all the information about all stacks, not just the one we are waiting for. This adds a lot of time to call. By simply adding the name into the call, we make a much lighter and faster call. This was already done while waiting for the stack to create.
Fixed patch. The original one didn't handle the exception that was thrown (I had confused it with the ListStacks call).