mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
ensure {} output is not treated as change in module.py state, fixes #24233
This commit is contained in:
parent
ced558a6e6
commit
37e8827ce8
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ def run(name, **kwargs):
|
|||
ret['result'] = False
|
||||
return ret
|
||||
else:
|
||||
if mret is not None:
|
||||
if mret is not None or mret is not {}:
|
||||
ret['changes']['ret'] = mret
|
||||
|
||||
if 'returner' in kwargs:
|
||||
|
|
Loading…
Add table
Reference in a new issue