Return an iterable instead of None

By default `.get()` will return `None` on a key that doesn't exist. This
causes a `TypeError` in the `for` loop a few lines down. This change simply
returns an iterable type to avoid the error.
reviewable/pr18780/r1
Michael J. Schultz 9 years ago
parent 0c403781a7
commit 63d7bbea19

@ -184,7 +184,7 @@ def create_metric_alarm(connection, module):
comparisons = {'<=' : 'LessThanOrEqualToThreshold', '<' : 'LessThanThreshold', '>=' : 'GreaterThanOrEqualToThreshold', '>' : 'GreaterThanThreshold'}
alarm.comparison = comparisons[comparison]
dim1 = module.params.get('dimensions')
dim1 = module.params.get('dimensions', {})
dim2 = alarm.dimensions
for keys in dim1:

Loading…
Cancel
Save