Default multiprocessing to False since anything that needs salt.vt will have trouble with our forking model.

This commit is contained in:
C. R. Oldham 2015-10-16 10:26:43 -06:00
parent cc0ad81b3d
commit c800f60338

View file

@ -1188,7 +1188,13 @@ DEFAULT_MASTER_OPTS = {
DEFAULT_PROXY_MINION_OPTS = {
'conf_file': os.path.join(salt.syspaths.CONFIG_DIR, 'proxy'),
'log_file': os.path.join(salt.syspaths.LOGS_DIR, 'proxy'),
'add_proxymodule_to_opts': True
'add_proxymodule_to_opts': True,
# Default multiprocessing to False since anything that needs
# salt.vt will have trouble with our forking model.
# Proxies with non-persistent (mostly REST API) connections
# can change this back to True
'multiprocessing': False
}
# ----- Salt Cloud Configuration Defaults ----------------------------------->