Use NormalizedOperationMethod to catch ClientErrors so the waiter can handle them properly (#37356)

pull/37377/head
Ryan Brown 7 years ago committed by Sloane Hertel
parent 123694397a
commit 93946ba627

@ -24,7 +24,7 @@ ec2_data = {
"matcher": "error", "matcher": "error",
"expected": "InvalidRouteTableID.NotFound", "expected": "InvalidRouteTableID.NotFound",
"state": "retry" "state": "retry"
} },
] ]
} }
} }
@ -40,7 +40,9 @@ waiters_by_name = {
('EC2', 'route_table_exists'): lambda ec2: core_waiter.Waiter( ('EC2', 'route_table_exists'): lambda ec2: core_waiter.Waiter(
'route_table_exists', 'route_table_exists',
model_for('RouteTableExists'), model_for('RouteTableExists'),
ec2.describe_route_tables) core_waiter.NormalizedOperationMethod(
ec2.describe_route_tables
))
} }

Loading…
Cancel
Save