server_list_min should use state, not status

This is what is used when getting server names quickly.
This commit is contained in:
Daniel Wallace 2018-05-02 08:45:55 -05:00
parent b14e974b5f
commit 8ae32033cc
No known key found for this signature in database
GPG key ID: 5FA5E5544F010D48

View file

@ -908,7 +908,7 @@ class SaltNova(object):
try:
ret[item.name] = {
'id': item.id,
'status': 'Running'
'state': 'Running'
}
except TypeError:
pass