Set multiprocessing to true in config.py

This commit is contained in:
twangboy 2016-02-08 18:13:07 -07:00
parent 2b8f7a12e7
commit 933544b8c8

View file

@ -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,