We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0447024 commit c26af10Copy full SHA for c26af10
tests/_utils.py
@@ -529,7 +529,7 @@ def path_generator(bucket):
529
def extract_cloudformation_outputs():
530
outputs = {}
531
client = boto3.client("cloudformation")
532
- response = client.describe_stacks()
+ response = try_it(client.describe_stacks, botocore.exceptions.ClientError, max_num_tries=5)
533
for stack in response.get("Stacks"):
534
if (stack["StackName"] in ["aws-data-wrangler-base", "aws-data-wrangler-databases"]) and (
535
stack["StackStatus"] in CFN_VALID_STATUS
0 commit comments