mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #30354 from alprs/fix-pillar_ignore_missing
Make sure all ignore_missing SLSes are catched
This commit is contained in:
commit
7ee61f0d62
1 changed files with 1 additions and 1 deletions
|
@ -395,7 +395,7 @@ class Pillar(object):
|
|||
if isinstance(comp, six.string_types):
|
||||
states[comp] = True
|
||||
if ignore_missing:
|
||||
self.ignored_pillars[saltenv] = list(states.keys())
|
||||
self.ignored_pillars[saltenv].extend(states.keys())
|
||||
top[saltenv][tgt] = matches
|
||||
top[saltenv][tgt].extend(states)
|
||||
return self.sort_top_targets(top, orders)
|
||||
|
|
Loading…
Add table
Reference in a new issue