Fixes the bug where it was using only the keys to determine whether a change was made, i.e. values changes for existing keys was reported incorrectly.
This commit is contained in:
parent
f09389b179
commit
d517abf44b
1 changed files with 5 additions and 1 deletions
|
@ -194,6 +194,10 @@ def _post_monitor(module, options):
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
module.fail_json(msg=str(e))
|
module.fail_json(msg=str(e))
|
||||||
|
|
||||||
|
def _equal_dicts(a, b, ignore_keys):
|
||||||
|
ka = set(a).difference(ignore_keys)
|
||||||
|
kb = set(b).difference(ignore_keys)
|
||||||
|
return ka == kb and all(a[k] == b[k] for k in ka)
|
||||||
|
|
||||||
def _update_monitor(module, monitor, options):
|
def _update_monitor(module, monitor, options):
|
||||||
try:
|
try:
|
||||||
|
@ -202,7 +206,7 @@ def _update_monitor(module, monitor, options):
|
||||||
options=options)
|
options=options)
|
||||||
if 'errors' in msg:
|
if 'errors' in msg:
|
||||||
module.fail_json(msg=str(msg['errors']))
|
module.fail_json(msg=str(msg['errors']))
|
||||||
elif len(set(msg) - set(monitor)) == 0:
|
elif _equal_dicts(msg, monitor, ['creator', 'overall_state']):
|
||||||
module.exit_json(changed=False, msg=msg)
|
module.exit_json(changed=False, msg=msg)
|
||||||
else:
|
else:
|
||||||
module.exit_json(changed=True, msg=msg)
|
module.exit_json(changed=True, msg=msg)
|
||||||
|
|
Loading…
Reference in a new issue