mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix syntax issue in the client
This commit is contained in:
parent
6527f897be
commit
85ddd62528
1 changed files with 2 additions and 2 deletions
|
@ -78,8 +78,8 @@ class LocalClient(object):
|
|||
while True:
|
||||
for fn_ in os.listdir(jid_dir):
|
||||
if not ret.has_key(fn_):
|
||||
ret[fn_] = pickle.loads(open(os.path.join(jid_dir),
|
||||
fn_, 'return.p'), 'r')
|
||||
ret[fn_] = pickle.loads(open(os.path.join(jid_dir,
|
||||
fn_, 'return.p'), 'r'))
|
||||
if len(ret) >= len(minions):
|
||||
return ret
|
||||
if int(time.time()) > start + timeout:
|
||||
|
|
Loading…
Add table
Reference in a new issue