mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Forgot to pop the include before rendering the high data
This commit is contained in:
parent
cfb5469ae6
commit
e913c81777
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ class HighState(object):
|
|||
mods.add(sls)
|
||||
if state:
|
||||
if state.has_key('include'):
|
||||
for sub_sls in state['include']:
|
||||
for sub_sls in state.pop('include'):
|
||||
if not list(mods).count(sub_sls):
|
||||
nstate, mods = self.render_state(sub_sls, env, mods)
|
||||
if nstate:
|
||||
|
|
Loading…
Add table
Reference in a new issue