mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
Merge remote-tracking branch 'upstream/develop' into unify-api
This commit is contained in:
commit
f038dc48b2
@ -1868,7 +1868,7 @@ class ClearFuncs(object):
|
||||
log.warning('Authentication failure of type "token" occurred.')
|
||||
return ''
|
||||
good = self.ckminions.wheel_check(
|
||||
self.opts['external_auth'][clear_load['eauth']][token['name']] if token['name'] in self.opts['external_auth'][clear_load['eauth']] else self.opts['external_auth'][token['eauth']]['*'],
|
||||
self.opts['external_auth'][token['eauth']][token['name']] if token['name'] in self.opts['external_auth'][token['eauth']] else self.opts['external_auth'][token['eauth']]['*'],
|
||||
clear_load['fun'])
|
||||
if not good:
|
||||
msg = ('Authentication failure of type "eauth" occurred for '
|
||||
|
@ -85,7 +85,7 @@ class RunnerClient(object):
|
||||
to watch for the return
|
||||
'''
|
||||
tag = '{0:%Y%m%d%H%M%S%f}'.format(datetime.datetime.now())
|
||||
tag[20] = 'r'
|
||||
tag = tag = '{0}r'.format(tag[:-1])
|
||||
proc = multiprocessing.Process(
|
||||
target=self._proc_runner,
|
||||
args=(tag, fun, low))
|
||||
|
Loading…
Reference in New Issue
Block a user