mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
No reason to continuously resolve the k, v pair here since it doesn't change in the inner loop
This commit is contained in:
parent
6d747df5db
commit
d687682016
1 changed files with 2 additions and 2 deletions
|
@ -1851,9 +1851,9 @@ class State(object):
|
|||
for req in low[requisite]:
|
||||
req = trim_req(req)
|
||||
found = False
|
||||
req_key = next(iter(req))
|
||||
req_val = req[req_key]
|
||||
for chunk in chunks:
|
||||
req_key = next(iter(req))
|
||||
req_val = req[req_key]
|
||||
if req_val is None:
|
||||
continue
|
||||
if req_key == 'sls':
|
||||
|
|
Loading…
Add table
Reference in a new issue