1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

check keys is in dim2 before evaluating

This commit is contained in:
Matt Ferrante 2015-01-29 16:36:35 -05:00 committed by Matt Clay
parent 09e10ea031
commit aaca9b5127

View file

@ -190,7 +190,7 @@ def create_metric_alarm(connection, module):
for keys in dim1:
if not isinstance(dim1[keys], list):
dim1[keys] = [dim1[keys]]
if dim1[keys] != dim2[keys]:
if keys not in dim2 or dim1[keys] != dim2[keys]:
changed=True
setattr(alarm, 'dimensions', dim1)