mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix error in failure checking for salt.state within orchestration
This commit is contained in:
parent
08dd663a27
commit
501f91a388
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ def state(
|
|||
m_ret = mdata['ret']
|
||||
except KeyError:
|
||||
m_state = False
|
||||
if not m_state:
|
||||
if m_state:
|
||||
m_state = salt.utils.check_state_result(m_ret)
|
||||
|
||||
if not m_state:
|
||||
|
|
Loading…
Add table
Reference in a new issue