Merge pull request #1906 from mjschultz/patch-1
Return an iterable instead of None
This commit is contained in:
commit
090926b938
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue