mirror of
https://github.com/valitydev/salt.git
synced 2024-11-09 01:36:48 +00:00
parent
93a930615e
commit
fd3b2a9e20
@ -1147,6 +1147,13 @@ class Minion(MinionBase):
|
||||
salt.utils.appendproctitle(data['jid'])
|
||||
# this seems awkward at first, but it's a workaround for Windows
|
||||
# multiprocessing communication.
|
||||
if sys.platform.startswith('win') and \
|
||||
opts['multiprocessing'] and \
|
||||
not salt.log.is_logging_configured():
|
||||
# We have to re-init the logging system for Windows
|
||||
salt.log.setup_console_logger(log_level=opts.get('log_level', 'info'))
|
||||
if opts.get('log_file'):
|
||||
salt.log.setup_logfile_logger(opts['log_file'], opts.get('log_level_logfile', 'info'))
|
||||
if not minion_instance:
|
||||
minion_instance = cls(opts)
|
||||
ret = {
|
||||
|
Loading…
Reference in New Issue
Block a user