mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Set multiprocessing to true in config.py
This commit is contained in:
parent
2b8f7a12e7
commit
933544b8c8
1 changed files with 1 additions and 3 deletions
|
@ -54,10 +54,8 @@ if salt.utils.is_windows():
|
|||
# support in ZeroMQ, we want the default to be something that has a
|
||||
# chance of working.
|
||||
_DFLT_IPC_MODE = 'tcp'
|
||||
_DFLT_MULTIPROCESSING_MODE = False
|
||||
else:
|
||||
_DFLT_IPC_MODE = 'ipc'
|
||||
_DFLT_MULTIPROCESSING_MODE = True
|
||||
|
||||
FLO_DIR = os.path.join(
|
||||
os.path.dirname(__file__),
|
||||
|
@ -882,7 +880,7 @@ DEFAULT_MINION_OPTS = {
|
|||
'open_mode': False,
|
||||
'auto_accept': True,
|
||||
'autosign_timeout': 120,
|
||||
'multiprocessing': _DFLT_MULTIPROCESSING_MODE,
|
||||
'multiprocessing': True,
|
||||
'mine_interval': 60,
|
||||
'ipc_mode': _DFLT_IPC_MODE,
|
||||
'ipv6': False,
|
||||
|
|
Loading…
Add table
Reference in a new issue