Preventing Nonetype is not iterable error when no tags are passed in for a newly created ASG

reviewable/pr18780/r1
Marcus Ahle 10 years ago
parent 9f37c87600
commit ba5c36ce5a

@ -248,7 +248,7 @@ def get_properties(autoscaling_group):
properties['instance_facts'] = instance_facts
properties['load_balancers'] = autoscaling_group.load_balancers
if hasattr(autoscaling_group, "tags"):
if getattr(autoscaling_group, "tags", None):
properties['tags'] = dict((t.key, t.value) for t in autoscaling_group.tags)
return properties

Loading…
Cancel
Save