mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #30060 from rallytime/bp-27104
Back-port #27104 to 2015.8
This commit is contained in:
commit
cedee772d7
1 changed files with 1 additions and 1 deletions
|
@ -2780,7 +2780,7 @@ def missing_node_cache(prov_dir, node_list, provider, opts):
|
|||
'''
|
||||
cached_nodes = []
|
||||
for node in os.listdir(prov_dir):
|
||||
cached_nodes.append(node.replace('.p', ''))
|
||||
cached_nodes.append(os.path.splitext(node)[0])
|
||||
|
||||
log.debug(sorted(cached_nodes))
|
||||
log.debug(sorted(node_list))
|
||||
|
|
Loading…
Add table
Reference in a new issue