mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #39206 from cachedout/issue_issue_37174
Ignore empty dicts in highstate outputter
This commit is contained in:
commit
2621c119fd
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ def _format_host(host, data):
|
|||
# Verify that the needed data is present
|
||||
data_tmp = {}
|
||||
for tname, info in six.iteritems(data):
|
||||
if isinstance(info, dict) and '__run_num__' not in info:
|
||||
if isinstance(info, dict) and info and '__run_num__' not in info:
|
||||
err = (u'The State execution failed to record the order '
|
||||
'in which all states were executed. The state '
|
||||
'return missing data is:')
|
||||
|
|
Loading…
Add table
Reference in a new issue