check keys is in dim2 before evaluating
This commit is contained in:
parent
f4dbcea30c
commit
e1f2c570eb
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue